int main() {
    int i;
    for(i = 2; i < 8; i++) {
        printf("%dedgy%dme\n", i, i+2);
    }
    return 0;
}