#include using namespace std; int main() { // 1. 入力情報取得. char a, b; cin >> a >> b; // 2. 出力. cout << b << " " << a << endl; return 0; }