#include using namespace std; int main () { char ch; ch = 'Z'; while (ch >= 'A') { cout << ch << " " ; ch = char (int(ch) -2); } cout << endl; }