Take Something Return Nothing

Create the program addition of two number using function

Example
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()
Output

Print 1st number

45

print 2nd number

45

The Result is 90

Print 1st number

40

print 2nd number

35

The Result is 75