본문 바로가기
알고리즘/백준

[c] 10926번 ??!

by 꾸주니=^= 2023. 1. 28.

 

 

[코드]

#include <stdio.h>
int main(void) {
char x[51];
scanf("%s", &x);
printf("%s??!", x);
    return 0;
}