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