import math R, K = map(int, input().split()) for i in range(1, K + 1): l = -R + 2 * R * math.asin(math.sin(math.pi * i / (K + 1))) / math.pi print(l)