Ответы
Ответ дал:
0
1.
x = int(input())
if x//100%10 == 2:
print("Так")
else:
print("Нi")
2.
x = int(input())
if -2 <= x <= 5:
print("Так")
else:
print("Нi")
3.
x = int(input())
if -2 <= x <= 5 or 7 <= x <= 10:
print("Так")
else:
print("Нi")
4.
a, b = int(input()), int(input())
if (a%10 + a//10%10) == (b%10 + b//10%10):
print("Так")
else:
print("Нi")
Вас заинтересует
2 года назад
2 года назад
8 лет назад
8 лет назад
9 лет назад