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


int main(){
    int h,t;
    cin>>h>>t;
    int ans = h/t;
    cout<<ans<<endl;



    return 0;
}
Copy
The Tortoise and the Hare Saq
GNU G++17
3 ms
928 KB
Accepted