#include<iostream> using namespace std; int main() { int n; int b = n / 100; int s = n / 10%10; int g = n % 100; cout<<b+s*10+g*100; }