Arithmetic Operators

  • + 1 comment

    Ok, I figured it out. When you try to use static values it results in the 325 1 6. Example of static values 3 & 2: a=int(raw_input(3)) b=int(raw_input(2)) etc...

    When I remove the static values then the process works:

    a=int(raw_input()) b=int(raw_input()) etc...

    I assume the input values (3, 2) are provided as part of the test case when executed.