#7-1 汽车租赁
print("Enter the car you want:")
car = input()
print("Let me see if I can find you a " + car)
#7-2 餐馆订位
num = input()
if num <= 8:
print("Empty tables here")
else:
print("No empty table left")
#7-3 10的整数倍
num = input()
if num % 10 == 0:
print("Yes")
else:
print("No")
#7-4 披萨配料
while(True):
s = input()
if s is "quit":
break
else:
print("We will add {} in the pizza".format(s))
#7-5 电影票
while(True):
age = input()
if age < 3:
print("free")
elif age < 12:
print("¥10")
else:
print("¥15")
#7-7 无限循环
while(True) {
print("loop")
}