Coding is the closest thing we have to superpower !

10 : 依样画葫芦-输出ABCDE
描述

下面这段代码可以输出一个字符"A" 

#include<bits/stdc++.h>

using namespace std;

int main(){

cout<<"A";

return 0;

}

下面这段代码可以输出两个字符"AB" 

#include<bits/stdc++.h>

using namespace std;

int main(){

cout<<"AB";

return 0;

}

你需要写程序,输出"ABCDE"

输入

不需要输入

输出

输出ABCDE

样例

输入


                            

输出

ABCDE
语言:
主题: