Răspuns:
#include <iostream>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
cout << (3 * x) - (4 * y);
return 0;
}