# if嵌套用法
if 1 == 1 :
    if 2 == 3:
        print("欢迎离开")
        print("欢迎滚出")
    else:
        print('再见')
else:
    print("欢迎来到python世界")