#include <iostream>

using namespace std;

int main() {
  long long N, K, L;
  cin >> N >> K >> L;

  // Calculate the area of the union of the squares.
  long long area = N * L * K;

  cout << area << endl;

  return 0;
}