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

 

27331번: 2 桁の整数 (Two-digit Integer)

2 つの数字 A, B が与えられる. 十の位が A であり,一の位が B である 2 桁の正の整数を出力せよ.

www.acmicpc.net

문제

Print out the word Hook as shown below.

입력

Print out the word Hook as shown below.

출력

 


코드

#include <stdio.h>


int main()
{
	
	printf("#  # #### #### #  #\n");
	printf("#### #  # #  # # #\n");
	printf("#### #  # #  # # #\n");
	printf("#  # #### #### #  #\n");


	

	return 0;
}

 

 

 

 

 

+ Recent posts