Source Code
#include <iostream>

using namespace std;

int main()
{
   int h,t;
   cin>>h>>t;
   cout<< h/t<<endl;

    return 0;
}
Copy
The Tortoise and the Hare sharawi
GNU G++17
3 ms
964 KB
Accepted