Pizzaria

Problem Link

Solution by dudu100 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


« Back to problem