Source Code
#include <iostream>
 
using namespace std;
 
int main() {
	int h,k;
	cin>>h>>k;
	cout<<h/k;
 
 
	return 0;
}
Copy
The Tortoise and the Hare fakher20
GNU G++17
3 ms
968 KB
Accepted