#include <stdio.h>
#define SALUTO "Ciao! come stai?\n"
int main (void)
{
  printf (SALUTO);
  return 0;
}