#include<stdio.h> void main() { int a,b,c,; printf("Enter the Frist no."); scanf("%d", &a); printf("Enter the Frist no."); scanf("%d", &b); c = a + b ; printf("Sum of the Number = %d",c); return 0; }
Post a Comment