#include using namespace std; void f(int x) { if(x >= 10 && x <= 98) x = (x % 10) * 10 + (x / 10); cout << x << '\n'; } int main() { f(5); f(10); f(45); f(68); f(92); f(120); f(1024); }