from math import *

a = float(input("введи a = "))
s = pow(a, 2)
d = a * sqrt(2)
print("s =", s)
print("d =", d)
55.7