游客 Signup | Login
中文 | En

2963 - 输出字母

按顺序输出26个小写英文字母。

Input

本题无输入。

Output

连续输出,无换行。

Examples

Input

no input needed

Output

abcdefghijklmnopqrstuvwxyz

Solution C++

#include<iostream>
using namespace std;
int main()
{
cout<<"abcdefghijklmnopqrstuvwxyz"<<endl;
return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题