#include <iostream.h>
#include <iomanip.h>
int main()
{
    int y=65,z=1;
    
    char x=65;
   
    while(y<=90)
    {cout << setw(5)<< y << setw(2) << x ;
    x++;
    if((z%4)==0) cout << endl;
    z++;
    y++;
}
cout << endl;
cout << endl;
    int a=97,b=1;
    
    char c=97;
   
    while(a<=122)
    {cout << setw(5)<< a << setw(2) << c ;
    c++;
    if((b%4)==0) cout << endl;
    b++;
    a++;
    
    
               }
               cout << endl;
cout << "Programmende...";
cin.get (); cin.get();
return(0);    
    }

/*

*/
