A - Generalized ABC Editorial
			
			by  nok0
nok0
			
		
		(おまけ)Python の便利な標準ライブラリの紹介
		Python の標準ライブラリには、A から Z  までの文字を昇順に繋げた文字列が string.ascii_uppercase として入っています。これを用いると非常に簡潔な実装が得られます。
実装例(Python, string ライブラリ使用):
import string
print(string.ascii_uppercase[:int(input())])
				posted:
				
				
				last update:
				
			
