#include <iostream>
#include <tuple>

using namespace std;

int main() {
	int a=1, b=2;
	tie(b, a)=tie(a, b);
	cout<<a<<", "<<b;
	return 0;
}