5)
number = int(input())
if number % 2 == 0:
#your code
6)
y = 0
if x>3:
y = 2*x + 5
else:
y = x - 8
#your code
7)
x = int(input())
y = int(input())
if x % 2 == 0 or y % 2 == 0:
print('da')
else:
print('net')
8)
x = int(input())
if x<0:
x = x*(-1)
if x >= 8:
#your code
9)
number = int(input())
if len(str(number)) == 4 and number % 5 == 0:
print('Удача')
10)
number = input()
if number[0] == number[1]:
#your code