문제 url : https://www.acmicpc.net/problem/10172

출력결과

|\_/|
|q p|   /}
( 0 )"""\
|"^"`    |
||_/=\\__|

소스코드

public class Main {
	public static void main(String[] args) {
		System.out.println("|\\_/|");
		System.out.println("|q p|   /}");
		System.out.println("( 0 )\"\"\""+"\\");
		System.out.println("|\"^\"`    |");
		System.out.println("||_/=\\\\__|");
	}
}