4270 - 연습 1.23 코멘트 제거

Time Limit: 1s Memory Limit: 128MB

Submissions: 1286 Solved: 336
Description

전처리기가 하는 것처럼 C 코드내 사용된 모든 코멘트를 제거하는 프로그램을 작성하시오. (단, 문자열에 포함된 코멘트는 제거하지 않도록 주의하고 코맨트내 엔터는 남겨야 함)

Input

EOF로 끝나는 문자열. 각 라인의 길이는 1000을 넘지 않는다.

Output

코멘드만 제거된 C코드

Sample Input
#include <stdio.h>

/* comment1 */
/* comment2
   comment2 */

int main()
{
	/* comment3 */

	printf("The comment /* comment4 */ of a string survives \n");

	/* "comment5" */ return 0;
}
Sample Output
#include <stdio.h>





int main()
{
	

	printf("The comment /* comment4 */ of a string survives \n");

	 return 0;
}