Arithmetic Operators

  • + 0 comments

    a = int(input()) b = int(input()) if (1<=a<=10**10): print(a+b) print(a-b) print(a*b)