27 lines
358 B
Python
27 lines
358 B
Python
from tests.test_utils import *
|
|
|
|
|
|
def test():
|
|
|
|
@Commentor()
|
|
def target():
|
|
x = 2
|
|
if x > 3:
|
|
x = 2 * x
|
|
y = 1
|
|
elif x > 2:
|
|
x = 4 * x
|
|
y = 2
|
|
elif x > 3:
|
|
x = 4 * x
|
|
y = 3
|
|
else:
|
|
x = 8 * x
|
|
y = 5
|
|
|
|
|
|
print(target())
|
|
|
|
|
|
test()
|