#include <iostream>
#include <cstring>
#include <cmath>
#include <iomanip>
using namespace std;
int main () {
char letter[]={'a','b','c','d','e'};
int i, j;
for(i=0;i<5;i++;){
for(j=0;j<5;j++){
cout <<letter[i] << letter[j] << endl;
}
}
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8Y3N0cmluZz4KI2luY2x1ZGUgPGNtYXRoPgogCiNpbmNsdWRlIDxpb21hbmlwPgogCiB1c2luZyBuYW1lc3BhY2Ugc3RkOwogCiBpbnQgbWFpbiAoKSB7CmNoYXIgbGV0dGVyW109eydhJywnYicsJ2MnLCdkJywnZSd9OwogCWludCBpLCBqOwogCQogCQogCWZvcihpPTA7aTw1O2krKzspewogCQlmb3Ioaj0wO2o8NTtqKyspewogCQkJY291dCA8PGxldHRlcltpXSA8PCBsZXR0ZXJbal0gPDwgZW5kbDsgCQp9Cn0KfQo=
prog.cpp: In function ‘int main()’:
prog.cpp:14: error: expected `)' before ‘;’ token
prog.cpp:14: error: expected primary-expression before ‘)’ token
prog.cpp:14: error: expected `;' before ‘)’ token
prog.cpp:10: warning: unused variable ‘letter’
prog.cpp:11: warning: unused variable ‘j’
prog.cpp:19: error: expected `}' at end of input