#include <iostream>
#include <tuple>
using namespace std;

int main() {
	// your code goes here
	int a = 10;
	int b = 5;
	int c = 1;
	tie(a,b,c)=make_tuple(b,c,a);
	cout << a << endl;
	cout << b << endl;
	cout << c << endl;
	return 0;
}