#include<stdio.h>
int main()
{
// declare variable x, y and z
int x, y, z;
// Ask user to enter 3 number
printf("Enter three numbers: \n");
// accept input from keyboard
scanf("%d,%d,%d", &x, &y, &z);
// print the entered numbers
printf("Value of x = %d , y = %d, z = %d", x, y, z);
// signal to operating system everything works fine
return 0;
}