본문 바로가기
ALGORITHM/백준 With Node.js

[백준] 10172번 / 개 / Node.js

by LAY CODER 2021. 4. 19.
728x90

문제

 

아래 예제와 같이 개를 출력하시오.

 

입력

 

없음.

 

출력

 

개를 출력한다.

 

예제 입력 1

 

없음

 

예제 출력 1

 

|\_/|

|q p|   /}

( 0 )"""\

|"^"`    |

||_/=\\__|

 

CODE

console.log('|\\_/|');
console.log('|q p|   /}');
console.log('( 0 )"""\\');
console.log('|"^"`    |');
console.log('||_/=\\\\__|');

댓글