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