#include<stdio.h>

void main() {
  int x=1, y=2, z=5;
  
  printf("x is %d and y is %d.\n",x,y,z);
  printf("x is %d, y is %d, z is %d\n",x,y);
}
