游客 Signup | Login
中文 | En

2964 - 倒序输出字母

倒序输出26个大写字母。

Input

本题无输入。

Output

连续输出,无换行。

Examples

Input

no input needed

Output

ZYXWVUTSRQPONMLKJIHGFEDCBA

Solution C++

#include<iostream>
using namespace std;
int main()
{
cout<<"ZYXWVUTSRQPONMLKJIHGFEDCBA"<<endl;
return 0;
}

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题