#include using namespace std; using ll = long long; using ull = unsigned long long; #define rep(i,n) for(int i=0; i<(int)(n); i++) #define rrep(i, n) for(int i=((int)(n)-1); i>=0; --i) #define all(x) (x).begin(),(x).end() #define MOD 1000000007 #define MOD2 998244353 #define INF 1000000007 #define LINF 1000000000000000007LL #define PI 3.14159265359 #define P pair template inline bool chmax(T &a, const T &b){ if(a inline bool chmin(T &a, const T &b){ if(a>b) {a=b; return true;} else return false; } struct Edge{ int to; ll cost; int rev; Edge(int to, ll cost, int rev) : to(to), cost(cost), rev(rev) {} }; typedef vector Edges; typedef vector Graph; void add_edge(Graph &g,int from,int to,ll cost,bool revFlag,ll revCost){ g[from].push_back(Edge(to,cost,g[to].size())); if(revFlag) g[to].push_back(Edge(from,revCost,g[from].size()-1)); } void solve(){ ll a,b,s; cin>>a>>b>>s; ll ans=0; for(ll t=1; t<=s; t++){ for(ll x=1; x*x<=t; x++){ if(t%x!=0) continue; ll y=t/x; if(x<=a && y<=b) ans += (a-x+1)*(b-y+1); if(x!=y && x<=b && y<=a) ans += (b-x+1)*(a-y+1); } } cout<