We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Arithmetic Operators
Arithmetic Operators
Sort by
recency
|
1152 Discussions
|
Please Login in order to post a comment
For Python3 Platform
a = int(input()) b = int(input()) if (1<=a<=10**10): print(a+b) print(a-b) print(a*b)
print(a + b, a - b, a * b, sep="\n")
a= int(input()); b=int(input()); print(a+b) print(a-b) print(a*b)