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
+ 0 comments if name == 'main': a = int(input()) b = int(input()) nums = [a+b, a-b, a*2 and a*b] for i in nums: print(i)
+ 0 comments a = int(input()) b = int(input()) if a and b in range(1, pow(10, 10)): print(a + b) print(a - b) print(a * b)
+ 1 comment if name == 'main': a = int(input()) b = int(input())
x = a + b, a - b, a * b for i in x: print(i)
+ 1 comment check out my solution
if __name__ == '__main__': a = int(input()) b = int(input()) if (1<=a<=10**10) and (1<=b<=10**10): print(a+b) print(a-b) print(a*b)
+ 1 comment My code: if name == 'main': a = int(input()) b = int(input()) print(a+b) print(a-b) print(a*b)
Load more conversations
Sort 954 Discussions, By:
Please Login in order to post a comment