// editor1
#include <iostream>
using namespace std;
int main(){
    int a,b,c;
    int temp = c;
    a=b;
    a=c;
    b=c;
    a=temp;
    cout<<a<<""<<b<<""<<c;
    return 
    
}