1 #include<iostream> 2 using namespace std; 3 int main() { 4 int i,j; 5 i='A'; 6 j='B'; 7 cout<<i<<'\n'<<j; 8 return 0; 9 }