#include <iostream>

using namespace std;

//What is the significance of 65? What are the other ascii chars?

int main(){

    for(int i = 65; i< 65 + 26; i++){

	cout << static_cast<char>(i) << " ";
    }
    return 0;
}

