WORK #3

 avatar
unknown
c_cpp
2 years ago
191 B
4
Indexable
#include <iostream>
#include <vector>

using namespace std;

long long n, m, s;

long long get_ans(long long a, long long b) {
    return max((n / a) * (m / b), (n / b) * (m / a));
}
Editor is loading...