Submission #1354190

#TimeUsernameProblemLanguageResultExecution timeMemory
1354190goulthenMultiply (CEOI17_mul)C++20
40 / 100
0 ms344 KiB
#include <bits/stdc++.h>
using namespace std;

#define int long long
#define rep(i,a,b) for (int i = a; i <= b; i++)
#define per(i,a,b) for (int i = a; i >= b; i--)
#define pii pair<int,int>
#define fi first
#define se second
#define endl '\n'
#define pb push_back
#define all(v) (v).begin(), (v).end()

const int MAXN = 1e6+10;
const int INF = 1e18+10;
const int MOD = 1e9+7;

void solve() {
    int n,m,a,b; cin >> n >> m >> a >> b;
    cout << a*b << endl;
}

int32_t main() {
    ios_base::sync_with_stdio(0);cin.tie(nullptr);
	int tt = 1;
    //cin >> tt;
    
    while(tt--) solve();
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...