Source Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
int main() {
    ios_base::sync_with_stdio(0);
    ll n, k;
    cin>>n>>k;
    cout<<(n/k)<<endl;
}
Copy
The Tortoise and the Hare RedNextCentury
GNU G++17
3 ms
1.0 MB
Accepted