提交时间:2024-04-14 20:00:11

运行 ID: 45504

#include <bits/stdc++.h> using namespace std; int main(){ int n, m; cin >> n >> m; if(n % m != 0){ cout << n / m + 1; }else{ cout << n / m; } return 0; }