if int (input ( ) ) %5= =0:
print("yes")
if int (input ( ) ) %5!=0:
print("no")
如果输入7,则输出( )。
for i in range(3):
print(i, end="")
print("go")
1 | go |
2 | go |
3 | go |
1 |
2 |
3 go |