# if语句的练习
print("请输入数字")
num=int(input())
if  num %2==0:
    num=10+20
print("num=",num)