B - Яблоки
Anonymous
c_cpp
09/25/2023 12:42 PM
176 B
19
Indexable
#include <iostream>
using namespace std;
int main() {
int n, k;
cin >> n >> k;
cout << k / n;
return 0;
}Editor is loading...
#include <iostream>
using namespace std;
int main() {
int n, k;
cin >> n >> k;
cout << k / n;
return 0;
}