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