1) name = input()
print("Здравствуй,", name + "!")
2) chislo = input()
if "." in chislo:
print("Это число не целое")
else:
print(“Число целое”)
3) one = int(input())
two = int(input())
three = int(input())
four = int(input())
print(min(one, two, three, four))
print(max(one, two, three, four))
4) chislo = int(input())
if chislo % 2 == 0:
if chislo > 50:
print("Категория А”)
else:
print("Категория B”)
else:
if chislo > 50:
print("Категория C”)
else:
print("Категория D”)
5) c1 = int(input())
c2 = int(input())
z = input()
if z == "+":
print(c1 + c2)
if z == "-":
print(c1 - c2)
if z == "*":
print(c1 * c2)
if z == "/":
print(c1 / c2)