Skip to content

Commit 633aadb

Browse files
authored
Create C- Theatre Square
1 parent 60fe9ec commit 633aadb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

C- Theatre Square

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
#include <iostream>
3+
#include<algorithm>
4+
#include<cmath>
5+
using namespace std;
6+
7+
int main() {
8+
unsigned long long n,m,a;
9+
cin>>n>>m>>a;
10+
unsigned long long value=ceil((double)m/a)*ceil((double)n/a);
11+
cout<<value ;
12+
return 0;
13+
}

0 commit comments

Comments
 (0)