Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
115762 冯潇阳 能否被3和5整除 Python3 Wrong Answer 35 MS 3744 KB 74 2025-04-04 11:04:30

Tests(0/1):


Code:

a=int(input()) if a//15==0: print("can") else: print("cannot")


Run Info:

------Input------
90
------Answer-----
can
------Your output-----
cannot