ShareCopy to ClipboardRawPreview#include<stdio.h> int main() { int a, b; printf("Enter Number a\n"); scanf("%d", &a); printf("Enter Number b\n"); scanf("%d", &b); printf("The sum is %d\n", a+b); return 0; } ADD00omtajne11additionCode to add two numbers0 CommentsAdd CommentLog in to add a comment