#include <iostream> using namespace std; int main() { long long a,b,h; cin >> a >> b >> h; cout << a * b * h << endl; return 0; }