Input Format
The first line contains the first integer, . The second line contains the second integer, .
Constraints
Output Format
Print the three lines as explained above.
Sample Input
3
2
Sample Output
5
1
6
Explanation
We guarantee you won't get any other SPAM
a = int(input())
ReplyDeleteb = int(input())
sum = a + b
print(sum)
sub = a - b
print(sub)
prod = a * b
print(prod)
a,b=[5,6]'''for example take input as 5and 6'''
ReplyDeleteprint(a+b)
print(a-b)
print(a*b)
Result
11
-1
30
a=int(3)
ReplyDeleteb=int(2)
print(a+b)
print(a-b)
print(a*b)