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
|
1214 Discussions
|
Please Login in order to post a comment
a,b=int(input()), int(input())
print(f"{a+b}\n{a-b}\n{b*a}")
if name == 'main': a = int(input()) b = int(input())
print(a+b) and also 2 line same print it like(a-b),(a*b)
if name == 'main': a = int(input()) b = int(input())
a = 3 b = 2 print(a+b,a-b,a*b,sep="\n")
a = int(input()) b = int(input())