#coding:utf-8
#特殊说明
#if/elif/else开头的行需要用冒号:结束
#if/elif/else行下面的表达式必须至少有一个空格的缩进,表明这条语句属于if语句的一部分
#elif语句的数量没限制
#但是,如果是空语句,需要增加pass,否则会报错
x = raw_input('Please input some value:')
print 'x=',x
print '----------begin------------'
if (int(x)>100):
print "x>100"
print "The First statement"
elif (int(x)>50):
print 'x>50'
print "The Second statement"
elif (int(x)>30):
pass
else:
print 'x<=30'
print '-----------end-------------'