#include<stdio.h>

void main() {
  int x=1;
  double y=56.5;
  
  printf("x is %lf and y is %d.\n",x,y);
}
