Untitled
#include <iostream> using namespace std; int main() { long long x, y, z; cin >> x >> y >> z; cout << (x * 3) + (y * 5) + (z * 12); }
#include <iostream> using namespace std; int main() { long long x, y, z; cin >> x >> y >> z; cout << (x * 3) + (y * 5) + (z * 12); }