Run ID:1339
提交时间:2023-08-25 11:46:48
#include<iostream> using namespace std; int main(){ int n,k; cin>>n>>k; cout<<n/k+1; return 0; }