Ответ:
n = int(input())if(n%3 == 0 or n%7 == 0): print("ДА")else: print("НЕТ")
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
n = int(input())
if(n%3 == 0 or n%7 == 0):
print("ДА")
else:
print("НЕТ")
Объяснение: