add an empty raw_input() at the end to pause until you press Enter
print("Enter two Numbers\n") a = int(raw_input('A=')) b = int(raw_input('B=')) c=a+b print ('C= %s' %c) raw_input() # waits for you to press enter Alternatively run it from IDLE, command line, or whichever editor you use.