list = input().split() D = int(list[0]) P = int(list[1]) tax = D * P // 100 print(D + tax)