eolymp
bolt
Try our new interface for solving problems
Problems

Rabbits in the cells

published at 3/19/18, 5:53:47 pm

6 тест трохи містичний -_-

published at 9/24/19, 1:00:05 pm

6 тест - очень большие числа, смотрите чтобы при выводе не было чего-то вроде "1.315е+10"

published at 4/1/24, 7:34:46 pm

include <iostream>

define ll long long

using namespace std; int main(){ ll n,m; cin>>n>>m; ll k=m/n; ll f=m%n; if(f!=0){ cout<<k+1; } else{ cout<<k; } }