Source Code

#include <bits/stdc++.h>
#define ll long long
using namespace std;

int main()
{
      ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
   ll t,n;
   cin>>t>>n;
   cout<<t/n;
    return 0;
}
Copy
The Tortoise and the Hare ateeq
GNU G++17
3 ms
848 KB
Accepted