1.
a = int(input("Podaj liczbę a: "))
b = int(input("Podaj liczbę b: "))
c = int(input("Podaj liczbę c: "))
d = int(input("Podaj liczbę d: "))
if a != 8 and b != 8 and c != 8 and d != 8:
print("\nTAK")
else:
print("\nNIE")
2.
x = int(input("Podaj liczbę x: "))
y = int(input("Podaj liczbę y: "))
z = int(input("Podaj liczbę z: "))
if x % 2 == 1 or y % 2 == 1 or z % 2 == 1:
print("\nTAK")
else:
print("\nNIE")