#include <iostream>
#include <string>
#include <cmath>
#include <bits/stdc++.h>
using namespace std;
int main()
{
    char x[3]={'a','b','c'} , y[3]={'e','f','j'};
// first loop here it prints the elements of the targeted array with the elements of the other array in each loop .
    for (int i = 0; i < 20 ;i++)
    {
        cout << y ;
    }
    cout << "\n\n" ;
//second loop prints the elements of targeted array with extra variable character each loop .
    for (int i = 0; i < 20 ;i++)
    {
        cout << x ;
    }
    return (0) ;
}
 
     
     
    