#include<iostream>
using namespace std;
void move(char from ,char to) {
cout<<"Move"<<from<<"to"<<to<<endl;
}
void hanoi(int n, char first, char second, char third) {
if(n==1)
move(first,third);
else{
hanoi(n-1,first,third,second);
move(first,third);
hanoi(n-1,second,first,third);
}
}
int main(){
int m;
cout<<"the number of diskes:";
cin>>m;
cout<<"move"<<m<<"diskes:\n";
hanoi(m,'A','B','C');
}