ans

DOZIE 2022-06-24 14:19:28 5 返回题目

#include <bits/stdc++.h> using namespace std; int main(){ int a , b , c; cin >> a >> b >> c; int x = a / c; int y = b / c; int sum = x * y; cout << sum;

return 0;

}

{{ vote && vote.total.up }}