#include using namespace std; int main () { char c='A'; while(c<='Z') { cout << c << " "; c++; } return 0; }