Answers for "theatre square codeforce"

3

theatre square codeforces solution

//Hello Kumkum, This code is constributed by me!! Tanishqqqqqq
#include <bits/stdc++.h>
using namespace std;
int main()
{
    double n, m, a;
    cin >> n >> m >> a;
    cout << (long long)ceil(n / a) * (long long)ceil(m / a) << endl;
}
Posted by: Guest on June-15-2021

Browse Popular Code Answers by Language