import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long N = sc.nextLong(); int M = sc.nextInt(); long r = N/1000/M*1000; System.out.println(r); } }