Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96318 周楚航 能否被3和5整除 Python3 Accepted 36 MS 3744 KB 90 2024-11-03 19:45:01

Tests(1/1):


Code:

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