Source Code
#include<bits/stdc++.h>
using namespace std;
void fast()
{
	cin.sync_with_stdio(0) ;
		cin.tie(0) ;
		cout.tie(0);
}
int main() 
{
fast();
int t=1;
//cin>>t;
while(t--){
int a,b;
cin>>a>>b;
cout<<a/b;
}
	return 0;
} 
Copy
The Tortoise and the Hare sameh58
GNU G++17
2 ms
952 KB
Accepted