출처 : https://www.acmicpc.net/problem/10171
아래 예제와 같이 고양이를 출력하시오.
없음.
고양이를 출력한다.
없음.
\ /\
) ( ')
( / )
(__)|
public class Main
{
public static void main(String[] args)
{
System.out.println("\\ /\\");
System.out.println(" ) ( ')");
System.out.println("( / )");
System.out.println(" \\(__)|");
}
}