Arithmetic Operators

  • + 2 comments

    my first expected value a+b comes up as 325, why?

    a = int(raw_input(3)) b = int(raw_input(2)) print a+b print a-b print a*b

    Your Output (stdout) 325 1 6