forked from jMonsinjon/hello-ippon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloIppon.java
More file actions
11 lines (11 loc) · 751 Bytes
/
HelloIppon.java
File metadata and controls
11 lines (11 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
public class HelloIppon
{
public static void main (String [] args)
{
System.out.println(" ___ ____ ____ ___ _ _ __ _ _ _ _ _ ");
System.out.println(" |_ _| _ \\| _ \\ / _ \\| \\ | | _ / _(_)_ __ ___| |_ ___ ___ _ __ | |_ __ _(_)_ __ ___ _ __ | | ");
System.out.println(" | || |_) | |_) | | | | \\| | (_) | |_| | __/ __| __| / __/ _ \\| _ \\| __/ _` | | _ \\ / _ \\ __| | | ");
System.out.println(" | || __/| __/| |_| | |\\ | _ | _| | | \\__ \\ |_ | (_| (_) | | | | || (_| | | | | | __/ | |_| ");
System.out.println(" |___|_| |_| \\___/|_| \\_| (_) |_| |_|_| |___/\\__| \\___\\___/|_| |_|\\__\\__,_|_|_| |_|\\___|_| (*) ");
}
}