mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
13 lines
109 B
Python
13 lines
109 B
Python
a, b = 2, 3
|
|
if a > b:
|
|
|
|
print(a)
|
|
|
|
for i in range(0, 10)
|
|
pass
|
|
|
|
|
|
if a * 2 > b:
|
|
print(b)
|
|
|
|
<caret> |