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 samou
GNU G++17
2 ms
1.0 MB
Accepted