Pizzaria
Problem LinkSolution by Mr.Olimpia — 100 pts
Code / Notes
#include <bits/stdc++.h>
using namespace std;
int main() {
int N;
int M;
cin >> N >> M;
cout << 8*N+4*M-2;
}
Last updated 1 month, 4 weeks ago
Solution by Mr.Olimpia — 100 pts
#include <bits/stdc++.h>
using namespace std;
int main() {
int N;
int M;
cin >> N >> M;
cout << 8*N+4*M-2;
}
Last updated 1 month, 4 weeks ago