import sys print(sys.platform) print(2**100) raw_input()
I am using Python 3.1 and can\'t get the raw_input to \"freeze\" the dos pop-
raw_input
Starting with Python 3, raw_input() was renamed to input().
raw_input()
input()
From What’s New In Python 3.0, Builtins section second item.