#include <bits/stdc++.h>
#define ll long long
#define zero  cout << 0 << '\n' ;
#define opps cout<<-1<<'\n';
const int MAX = 1e7;
using namespace std;
void solve() {
    ll n , m ;
    cin >> n >> m ;
    n *= m ;
    cout << n << '\n' ;
}
int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    solve();
    return 0;
}