#include <iostream> using namespace std; int main() { int i,j; for(i=0;i<4;i++) { for(j=0;j<20;j++) cout <<"@"; cout << endl; } return 0; }