
# sqroots.py

import math

tot = 0
for i in range(1, 26):
  tot += math.sqrt(i)
print(tot, tot/2)