#2
chenyucheng2022-08-30 22:54
|
money = int(input('请输入您的金额:'))
seat = int(input('有无座位?'))
if money == 1:
print('欢迎上车')
if seat == 1:
print('请坐')
else:
print('稍等')
else:
print('有钱再坐车')