Arithmetic Operators

  • + 1 comment

    a = int(input()) b = int(input()) plus = a+b destruction = a-b product = a*b print(plus);print(destruction);print(product)