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

int main()
{
    //   freopen("equal.in","rt",stdin);
//    freopen("output.txt","wt",stdout);
    ll n , h; cin>>n>>h;
    if(n>h){cout<<n/h<<endl; }
    else{
        cout<<0<<endl;
    }



}

Copy
The Tortoise and the Hare IDK101
GNU G++17
2 ms
976 KB
Wrong Answer