Given two different real numbers X and Y. Write a program, squaring the smallest of the numbers

Given two different real numbers X and Y. Write a program, squaring the smallest of the numbers, the largest – to a cube, and finding the arithmetic mean of the values obtained.

x=float(input())
y=float(input())

print(min(x,y)**2,max(x,y)**3,(x+y)/2)



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.