import java.util.*; import java.io.*; class FastReader { BufferedReader br; StringTokenizer st; public FastReader() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } class Solution { FastReader sc; int n,k; long cost[]; int arr[]; public Solution() { sc=new FastReader(); n=sc.nextInt(); k=sc.nextInt(); cost=new long[n]; arr=new int[n]; long mincost=Long.MAX_VALUE; Arrays.fill(arr,1); for(int i=0;i