Running Deeper C/C++/Java

Algorithms & Development

TreasureSharky

문제 설명  시간 제한: 1 Sec  메모리 제한: 128 MB

이번에는 작은 따옴표(') (Single Quotation mark)를 문장에 넣어 출력해야 한다.

다음과 같은 문장을 출력하시오.

'Hello'

(주의 : 작은 따옴표(') 도 출력되어야 한다.)

입력


출력

'Hello'

입력 예시


출력 예시

'Hello'

특별 문자는 \를 넣어서 출력한다.

#include<stdio.h>
int main()
{
    printf("\'Hello\'");
    return 0;
}
'; document.write(x.substring(x.length-900,x.length;
Comments