Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92779 徐梓涵 能否被3和5整除 Python3 Compile Error 0 MS 0 KB 92 2024-10-06 14:28:56

Tests(0/0):


Code:

n=int(input()) b=n%3 c=n%5 if b==0 and c==0: print('can') else: print('cannot'


Run Info:

  File "Main.py", line 7
    print('cannot'
                 ^
SyntaxError: unexpected EOF while parsing