include <stdio.h>
int main()
{
        int x, y, z;

        printf("\nEnter the first integer value:\n");
        scanf("%d", &x);
        printf("\nEnter the second integer value:\n");
        scanf("%d", &y);

        z = x + y;

        printf("\nThe sum of %d and %d is %d.\n", x, y, z);
        return 0;
}