Arithmetic Operators

  • + 0 comments

    if__name__=='main': a=int(input()) b=int(input()) c=a+b print(c) d=a-b print(d) e=a*b print(e)