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