Source Code
#include <bits/stdc++.h>

using namespace std;
int h,t;
int main()
{
    cin>>h>>t;
    cout<< h/t;
    
    return 0;
}
Copy
The Tortoise and the Hare Mohamedmaher
GNU G++17
9 ms
936 KB
Accepted