Testing
Copy below code
def table (num):
print ("Hello World")
print ("This is testing")
def sum(a, b):
return (a + b)
a = int(input('Enter 1st number: '))
b = int(input('Enter 2nd number: '))
print(f'Sum of {a} and {b} is {sum(a, b)}')
Comments
Post a Comment