#include<stdio.h>
#include<stdlib.h>
int main()
{
int x,y,z,V;
scanf("%d %d %d",&x,&y,&z);
V=x*y*z;
printf("%d\n",V);
system("pause");
return 0;
}
#include<stdio.h>
#include<stdlib.h>
int main()
{
int x,y,z,V;
scanf("%d %d %d",&x,&y,&z);
V=x*y*z;
printf("%d\n",V);
system("pause");
return 0;
}