def main(): N = int(input()) M = int(input()) print(N // (M*1000) * 1000) if __name__ == '__main__': main()