Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92294 周轩屹 能否被3和5整除 Python3 Wrong Answer 37 MS 3748 KB 90 2024-09-28 20:02:48

Tests(0/1):


Code:

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


Run Info:

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