#include <stdio.h>

int main (void){

  char example[20];

  fgets(example, 20, stdin);
  printf("example: %s\n", example);

  return 0;
}