mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 00:40:28 +07:00
12 lines
230 B
Python
12 lines
230 B
Python
class A:
|
|
def f(self, a, b):
|
|
while a:
|
|
a = a / 2
|
|
if a:
|
|
b = 1
|
|
elif<caret> b:
|
|
a = 1
|
|
else:
|
|
print "a"
|
|
for i in range(1, 10):
|
|
print i |