#include <stdio.h> int main() { char a = '9'; int b = 8; printf("%c + %c = %d", a, b + 48, a - '0' + b); printf("\n"); }