mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 04:45:04 +07:00
GitOrigin-RevId: caf60bd52a1872a2eb53f3617a6ffb51b195ff33
6 lines
67 B
Python
6 lines
67 B
Python
a, b = 2, 3
|
|
if a > b:
|
|
print(a)
|
|
elif a * 2 > b:
|
|
print(b)
|
|
<caret> |