#include <iostream.h>
#include <iomanip.h>
#include <math.h>
int main()
{
    int i;
    char computer[] = "HAL";
    char firma[4];
    
    cout << "In einem alten Film von Stanley K. hiess der Computer ";
    for(i=0 ; i<=2; i++) cout << computer[i]; cout << ".\n";
    
    cout << "Dies war moeglicherweise Schleichwerbung fuer ";
    //verschlüsselung nach caesar
    for (i=0 ;i<=2 ; i++) firma[i]=computer[i] + 1;
    cout << firma << ".\n";
    
cout << "\nProgrammende...";
cin.get (); cin.get();
return(0);    
    }

/*

*/
