Завдання 1
a = int(input())
print(a%6 == 0)
Завдання 2
print(a%9 != 0)
Завдання 3
print(a%10 == 2)
Завдання 4
a, b, c = int(input()), int(input()), int(input())
print(a == b == c)
Завдання 5
word1 = input()
word2 = input()
print(word1 == "Python" or word2 == "Python")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Завдання 1
a = int(input())
print(a%6 == 0)
Завдання 2
a = int(input())
print(a%9 != 0)
Завдання 3
a = int(input())
print(a%10 == 2)
Завдання 4
a, b, c = int(input()), int(input()), int(input())
print(a == b == c)
Завдання 5
word1 = input()
word2 = input()
print(word1 == "Python" or word2 == "Python")