준이에용 2023. 4. 5. 11:01

문제 번호: 10926

사용한 프로그래밍 언어: C언어

간단한 설명: 삼중자에 주의해서 '??!'를 더해서 출력한다.

#include <stdio.h>

int main(void){
  char str[51] = {};
  scanf("%s", str);
  printf("%s?\?!", str);
  return 0;
}