提交时间:2026-01-26 23:18:21

运行 ID: 83464

#include<iostream> using namespace std; int main(){ int h,s; cin>>h>>s; for(int i=0;i<h;++i){ for(int j=0;j<s;++j) cout<<"@"; cout<<'\n'; } return 0; }