Theatre Square in the capital city of Berland has a rectangular shape with the size n × m meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size a × a.
What is the least number of flagstones needed to pave the Square? It's allowed to cover the surface larger than the Theatre Square, but the Square has to be covered. It's not allowed to break the flagstones. The sides of flagstones should be parallel to the sides of the Square.
The input contains three positive integer numbers in the first line: n, m and a (1 ≤ n, m, a ≤ 109).
Write the needed number of flagstones.
6 6 4
4
【题解】:分别用n和m去除以a,若能整除则为整除结果,若不能整数则将商+1,最后所得两个数相乘则为结果。
int
main()
{
long long
int n,m,a,c;
long long
int x,y;
int k;
while(scanf("%lld%lld%lld",&n,&m,&a)!=EOF)
{
if(n%a==0) x=n/a;
else
x=n/a+1;
if(m%a==0)
y=m/a;
else
y=m/a+1;
c=x*y;
printf("%lld\n",c);
}
return 0;
}