xm----------答案

XMSXHL  •  1天前


include <bits/stdc++.h>

using namespace std;

int main() { int a, b, c; scanf("%d %d\n%d", &a, &b, &c); int s = floor(a / c), d = floor(b / c); int f = s * d; printf("%d", f); return 0; }


评论:

请先登录,才能进行评论