백준 10171

Hyerin·2021년 11월 21일
0
post-thumbnail

문제

https://www.acmicpc.net/problem/10171

C# 풀이

using System;

namespace baekjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("\\    /\\ ");
            Console.WriteLine(" )  ( \') ");
            Console.WriteLine("(  /  ) ");
            Console.WriteLine(" \\(__)|");
        }
    }
}

0개의 댓글