Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92781 徐梓涵 能否被3和5整除 Python3 Accepted 36 MS 3756 KB 93 2024-10-06 14:29:19

Tests(1/1):


Code:

n=int(input()) b=n%3 c=n%5 if b==0 and c==0: print('can') else: print('cannot')