Arithmetic Operators

  • + 0 comments

    if a >= b: print(a+b , a-b ,a*b ,sep="\n") else: print(b+a,b-a,b*a,sep="\n")