题解(有点水)

ljj 老八终结者 2023-09-02 22:12:03 2023-09-02 22:12:34 12
#include<iostream>
using namespace std;
int main(){
	int x,y;
	cin>>x>>y;
	cout<<3*x+2*y;
	return 0;
}