الرجوع
تسجيل الدخول

What is the output of the following Python program?

x = 5
if x < 10:
    print('Smaller')
if x > 20:
    print('Bigger')
print('Finis')