#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef unsigned long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); ll A,B,S; cin >> A >> B >> S; ll ans = 0; for(ll a = 1; a <= A; a++) { for(ll b = 1; b <= B && a * b <= S; b++) { ans += (A - a + 1) * (B - b + 1); } } cout << ans << endl; }