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

Tests(0/0):


Code:

a=int(input()) b=a%3 c=a%4 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