def main(): D, P = [int(val) for val in input().split()] price = int(D * P / 100 + D) print(price) if __name__ == '__main__': main()