def main(): # import math D, P = map(int, input().split()) print(int((D + D * P/100))) if __name__ == '__main__': main()