import math
a = float(input())
print(math.pow(a, 2))
print(math.sqrt(a))
Второе задание: import math
a = float(input())
b = float(input())
c = float(input())
print(math.pow(a, 2))
print(math.pow(b, 2))
print(math.pow(c, 2))
n = float(input())
print(n * n, n ** 0.5, sep = '\n')
С использованием math: from math import pow, sqrt
n = float(input())
print(pow(n, 2), sqrt(n))