!-- flowchart 箭头图标 勿删 --
# coding:utf-8
age_str = raw_input('Input your age: ')
try:
age = int(age_str)
print age
except:
print '输入的不是整数'
# coding:u