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