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