Untitled
Anonymous
plain_text
10/28/2023 2:29 PM
188 B
19
Indexable
#include <iostream>
using namespace std;
int main() {
long long x, y, z;
cin >> x >> y >> z;
cout << (x * 3) + (y * 5) + (z * 12);
}
Editor is loading...
#include <iostream>
using namespace std;
int main() {
long long x, y, z;
cin >> x >> y >> z;
cout << (x * 3) + (y * 5) + (z * 12);
}