def main(): d,p = map(int,input().split()) tax = (d*p) // 100 total = d + tax print(total) if __name__ == '__main__': main()