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