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