Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92292 张泽一 能否被3和5整除 Python3 Accepted 37 MS 3752 KB 108 2024-09-28 19:56:19

Tests(1/1):


Code:

s=input() s=int(s) if s%(3*5)==0: print("can") elif s%(3*5)>0: print("cannot") else: pass