游客 Signup | Login
中文 | En

2741 - 两行星号

打印两行星号,每行5个。

Input

Output

Examples

Input

no input needed

Output

*****
*****

Solution C++

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