Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92295 周轩屹 能否被3和5整除 Python3 Accepted 32 MS 3728 KB 90 2024-09-28 20:04:27

Tests(1/1):


Code:

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