3.WAP to find the sum of any two integer numbers.
3.WAP to find the sum of any two int numbers.
Code:
x=int(input("Enter the first number\n"))
y=int(input("Enter the second number\n"))
sum=x+y
print("The Addition of" ,x," and ",y,"is",sum,)
Output:
Enter the first number
6
Enter the second number
7
The Addition of 6 and 7 is 13
Comments
Post a Comment