Source Code
#include <iostream>
using namespace std;
int main(){
    
    int n,j;
    cin>>n>>j;
    int g=n/j;
    cout<<g<<endl;

return 0;
}
Copy
The Tortoise and the Hare khawaja
GNU G++17
11 ms
932 KB
Accepted