number1 = int(input("Введіть перше число: "))
number2 = int(input("Введіть друге число: "))
print("Середнє арифметичне: ", (number1 + number2) / 2)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
number1 = int(input("Введіть перше число: "))
number2 = int(input("Введіть друге число: "))
print("Середнє арифметичне: ", (number1 + number2) / 2)