Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93547 胡玄善 能否被3和5整除 Python3 Accepted 37 MS 3740 KB 88 2024-10-17 20:28:05

Tests(1/1):


Code:

s=input() a=int(s) if a%3==0 and a%5==0: print("can") else: print("cannot")