Arithmetic Operators

  • + 2 comments
    a = int(input())
    b = int(input())
     print("%d\n%d\n%d"%(a+b,a-b,a*b))
    

    Is there any difference in terms of performance?