执行下方的程序,以下选项中,输入哪个选项,程序会说出“再见” ?( )
while True:
print("你好")
n = int(input("请输入一个数:"))
if n % 3 == 0 and n % 5 == 0:
break
print("再见")
12
20
24
30