a, b, c = [int(s) for s in input().split()]
print((str((a+b+c)**2)), (str(a*b*c)), (str((a*b*c)/3)))
Объяснение:
a, b, c = [int(s) for s in input().split()]
print((str((a+b+c)**2)), (str(a*b*c)), (str((a*b*c)/3)))
Объяснение: