//Rail Fence Cipher (Java)
import java.util.Scanner;

public class ex2a {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        
        System.out.print("Enter Text: ");
        String text = scanner.nextLine();
        
        System.out.print("Enter Depth: ");
        int depth = scanner.nextInt();
        
        System.out.println("Rail Fence Cipher Executed");
        
        scanner.close();
    }
}
