Blame view

P62421_es/S004-AC.cc 170 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

using namespace std;

int main()
{
	string p1,p2,p3;
	cin >> p1;
	cin >> p2;
	cin >> p3;
	cout << p3 << " " << p2 << " " << p1 << endl;
	return 0;
}