5337번: 웰컴

문제 풀러가기

5337

설명

단순 구현문제이다.

주어진 예제처럼 출력되도록 하되 \의 경우 \\로 표현하여야 출력되므로 주의하자.

코드

import java.util.*;

class Main {
    public static void main(String[] args) throws Exception {
        System.out.println(".  .   .");
        System.out.println("|  | _ | _. _ ._ _  _");
        System.out.println("|/\\|(/.|(_.(_)[ | )(/.");
    }
}