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