Problem C
Anonymous
c_cpp
01/25/2024 7:40 AM
204 B
18
Indexable
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, k;
cin >> n >> k;
cout << k / n;
return 0;
}
Editor is loading...
Leave a Comment