#include<stdio.h> int main() { int a, b; a = 97 + 98; b='a'+'b'; printf("a=%d,b=%d",a,b); return 0; }