#include <iostream>
#include <string>
#include <windows.h>
using namespace std;
int main() {
setlocale(0, "RU");
SetConsoleOutputCP(1251);
SetConsoleCP(1251);
string *text = new string[3];
getline(cin, text[0]);
getline(cin, text[1]);
getline(cin, text[2]);
system("cls");
cout << text[2] << endl << text[1] << endl << text[0];
return 0;
}
#include <iostream>
#include <string>
#include <windows.h>
using namespace std;
int main() {
setlocale(0, "RU");
SetConsoleOutputCP(1251);
SetConsoleCP(1251);
string *text = new string[3];
getline(cin, text[0]);
getline(cin, text[1]);
getline(cin, text[2]);
system("cls");
cout << text[2] << endl << text[1] << endl << text[0];
return 0;
}