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