#include <iostream> int main(){ int a,b,c; std::cin>>a>>b>>c; int d = a*b*c; std::cout<< d; return 0; }