[백준] 25083번

park jinwoo·2022년 12월 3일
0

백준

목록 보기
10/94

https://www.acmicpc.net/problem/25083
아래 예제와 같이 새싹을 출력하시오.

<script>
#include <stdio.h>

int main() {
    printf("         ,r\'\"7\n");
    printf("r`-_   ,'  ,/\n");
    printf(" \\. \". L_r'\n");
    printf("   `~\\/\n");
    printf("      |\n");
    printf("      |\n");

    return 0;
}
</script>

0개의 댓글