6 lines
115 B
Python
6 lines
115 B
Python
def main():
|
|
total = 0
|
|
for i in range(1, 12000):
|
|
total += (i * i) % 97
|
|
return f"cpu-ok:{total}"
|