#include<stdio.h>
void main()
{
int x=9,y=8,z=7;
printf("%d,%d,%d,%d\n",x,y,z);
printf("%d,%d,%d\n",x,y,z,x+y+z);
printf("%f,%f,%f\n",x,y,z);
}