x = int(input())
y = int(input())
s = x + y
if s % 3 == 0:
s /= 3
elif s > 20 and x < 5:
s *= 2
print(s)
Объяснение:
x = int(input())
y = int(input())
s = x + y
if s % 3 == 0:
s /= 3
elif s > 20 and x < 5:
s *= 2
print(s)
Объяснение: