# 백준 #31610 (飴の袋詰め (Drops Packing)) # A 입력 A = int(input()) # B 입력 B = int(input()) # C 입력 C = int(input()) # A * B + C 값 출력 print((A * B) + C)