import math def f(n, k): return int(50 * n + math.floor(50 * n / (0.8 + 0.2 * k))) print(f(*list(map(int, input().split()))))