Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144184 谢尚昊 能否被3和5整除 Python3 Accepted 31 MS 3740 KB 126 2026-01-19 22:59:02

Tests(1/1):


Code:

i=int(input())#对应量i从字符串input变为整数int if i%3!=0 and i%5!=0: print("cannot") else: print("can")