Untitled
unknown
c_cpp
2 years ago
205 B
3
Indexable
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "Russian");
int n, m;
cin >> n >> m;
float k = float(n) / m;
if (k - int(k) > 0) {
k += 1;
cout << int(k);
}
}Editor is loading...
Leave a Comment