Python читать целое число из stdin

import sys
args = sys.argv
print(args)
# Note args[0] will always contains file name 
Cooperative Chamois