#include <stdio.h>

int main() {
    char num1,num2;
    int sum;
    printf("enter values of num1 & num2\n");
    scanf("%c%c",&num1,&num2);
    sum=(num1+num2);
    printf("sum of two number=%d\n"sum);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: