mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 08:10:27 +08:00
18 lines
201 B
C++
18 lines
201 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
int main(){
|
|
int a,b;
|
|
cin >>a>>b;
|
|
for(int i=0;i<a;i++){
|
|
for(int i=0;i<b;i++){
|
|
cout <<"*";
|
|
}
|
|
b++;
|
|
cout <<endl;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|