7 lines
120 B
C
7 lines
120 B
C
#include <stdio.h>
|
|
int main() {
|
|
char x[100];
|
|
printf("Who Sergay ");
|
|
scanf("%99s", x);
|
|
printf("Sergay: %s\n", x);
|
|
}
|