#include<iostream>
using namespace std;
int main()

{int a=10;b=20;
 {int temp=a;
 a=b;
 b=temp;
 }
 cout<<a<<b<<endl;
 return 0;}