Run ID:145233
提交时间:2026-01-25 10:39:27
#include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin>>n>>k; if(n%k>1) { cout<<n/k+2; } else { cout<<n/k+1; } return 0; }