mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
8 lines
154 B
Python
8 lines
154 B
Python
def f():
|
|
a = 10
|
|
result = 0
|
|
<selection>while a < 10:
|
|
result += a * a
|
|
a += 1</selection>
|
|
print("Sum of squares: " + result)
|