Run ID:116823
提交时间:2025-04-12 16:28:33
#include<bits/stdc++.h> using namespace std; int main() { int n,k; cin>>n>>k; if(n%k!=0&&n%k>1) { cout<<n/k+1; } else { cout<<n/k; } return 0; }