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 Mohamedmaher
GNU G++17
7 ms
948 KB
Accepted