Complete Video Learning
Table of Contents
def add(): print("Print 1st number") x=int(input()) print("Print 2nd number") y=int(input()) z=x+y print("The Result is ",z) add() add()
Print 1st number
45
print 2nd number
The Result is 90
40
35
The Result is 75