/******************************************************************************

Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C/C++.
Code, Compile, Run and Debug online from anywhere in world.

*******************************************************************************/
#include <stdio.h>

int main()
{        int x , y , z; 
         
         printf("enter x value =");
         scanf("%d" , &x );
         
         printf("enter y value =");
        scanf("%d" , &y );
        z = x + y;
        
         printf("sum = %d\n", z );
         
     return 0;
}

    