Ответ:
number = int(input()) if number % 3 == 0 or number % 5 == 0: print("Кратно 3 или 5") else: print("Не кратно 3 или 5")