Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144126 贺洁 能否被3和5整除 Python3 Accepted 30 MS 3728 KB 93 2026-01-19 15:54:16

Tests(1/1):


Code:

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