№1
x = int(input())
a = x // 100 > 0 and x > 0 and x % 10 == 0
print('a =', a)
b = x % 2 != 0 and (x % 3 == 0 or x % 5 == 0)
print('b =', b)
c = 2 <= x <= 6
print('c =', c)
d1 = x % 10
d2 = x // 10 % 10
d3 = x // 100
d = d3 > 0 and d1 == d2 == d3
print('d =', d)
№2
x = int(input())
a = abs(x) + 5 > 3
print(a)
b = abs(x) + 5 < 3
print(b)
Объяснение: