Source Code
#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int n, m;
	cin >> n >> m;
	cout << n/m ;
	return 0;
}
Copy
The Tortoise and the Hare Chicou
GNU G++17
2 ms
884 KB
Accepted