#include <stdio.h>

int main() {
  double *x;

  scanf("%lf", x);
  printf("*x = %lf\n",*x);
  return 0;
}
