import java.util.*;
import java.lang.*;
import java.io.*;

// The main method must be in a class named "Main".
class Main {
    public static void toh(int n, char s, char d, char a){
        if(n==1){
            System.out.println("Move disk 1 from "+s+" to "+d);
            return;
        }
        toh(n-1,s,a,d);
        System.out.println("Move disk "+n+" from "+s+" to "+d);
        toh(n-1,a,d,s);
    }
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        toh(n,'A','B','C');
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: