Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
108356 展博 素数判断 Python3 Compile Error 0 MS 0 KB 102 2025-01-20 10:15:12

Tests(0/0):


Code:

n=int(input()) for i in range(2,n+1): if n%i==0: print('not prime') break print('prime')


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 4)