59AC - ABC078C: HSI

ABC078-C (300 points)
# input
N, M = map(int, input().split())

ans = (2 ** M) * (1800 * M + 100 * N) 

print(ans)