Arithmetic Operators

  • + 0 comments
    a=int(input())
    b=int(input())
    l=[a+b,a-b,a*b]
    for i in l:
         print(i)
    

    easy and understanble