Arithmetic Operators

  • + 0 comments

    a=int(input()) b=int(input()) a=3 b=2 print(a+b) print(a-b) print(a*b)