#include void solve() { char a, b; std::cin >> a >> b; std::cout << b << " " << a << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }