[백준] 5337번

park jinwoo·2022년 12월 5일
0

백준

목록 보기
17/94

https://www.acmicpc.net/problem/5337
Welcome을 예제 출력처럼 출력하는 프로그램을 작성하시오.

<script>
#include <stdio.h>
 
int main() {
 
    printf(".  .   .\n");
    printf("|  | _ | _. _ ._ _  _\n");
    printf("|/\\|(/.|(_.(_)[ | )(/.\n");
    
    return 0;
}
</script>

0개의 댓글