Simple int calculation
#include <stdio.h> main() { int i,j,k; scanf("%d%d",&i,&j); k = i + j; printf("sum is %d \n",k); }