import math # 残りの作業量 w = int(input()) # 残りの日数 d = int(input()) # ある一日の作業量は w/d^2 def calc_workload(w, d): return math.trunc(w / (d * d)) while d > 1: w -= calc_workload(w, d) d -= 1 print(w)