#include<iostream> using namespace std; int main() { int c,a,b; a='a'; b='b'; c='a'+'b'; cout<<"a+b="<<a+b; system("pause"); return 0; }