[ create a new paste ] login | about

Link: http://codepad.org/OEgR1BoW    [ raw code | output | fork ]

Python, pasted on Nov 22:
1
2
3
4
5
x = int(raw_input("Enter x:"));
y = int(raw_input("Enter y:"));
 
sum = x + y;
print(sum);


Output:
1
2
3
4
Enter x:Traceback (most recent call last):
  Line 1, in <module>
    x = int(raw_input("Enter x:"));
EOFError


Create a new paste based on this one


Comments: