mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
7 lines
72 B
Python
7 lines
72 B
Python
a, b = 2, 3
|
|
if a > b:
|
|
print(a)
|
|
z = 42
|
|
if a * 2 > b:
|
|
print(b)
|
|
<caret> |