blob: 35fa406f7760df9c7a933ecc718bc03ccc7756e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public class GreatEscape
{
public static void main (String[] args)
{
System.out.println(" \\__/ \\__/");
System.out.println(" (\"\") (\"\")");
System.out.println(" .-----\\/ \\/-----.");
System.out.println(" /|_____| |_____|\\");
System.out.println("\" | \\ || || / | \"");
}
}
|