Ответ: python
a = int(input())
b = int(input())
if (a % 2) == (b % 2) and b % a == 0:
print('Экзамен сдан!')
elif (a % 10) == (b % 10):
print('Неплохо!')
else:
print('В море не выходить.')
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ: python
a = int(input())
b = int(input())
if (a % 2) == (b % 2) and b % a == 0:
print('Экзамен сдан!')
elif (a % 10) == (b % 10):
print('Неплохо!')
else:
print('В море не выходить.')