12627: 初级第九课——输出大写字母的ASCII值

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:3 Solved:0

Description

键盘上的任意一个字符在计算机内都有相应的编号,我们称为字符的ASCⅡ值。字符的大小由它对应的ASCⅡ值决定。A的ASCⅡ值是65,Z的ASCⅡ值是90,所以‘Z’>‘A’。想知道‘A’到 ‘Z’ 

中每个字母的ASCⅡ值吗?编个程序看看。

Input


Output

输出一行,包行A到Z的所有ASCII码值,每个数据用一个空格分隔。

Sample Input Copy

no input needed

Sample Output Copy

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

HINT