#include <iostream>
#include <string>
using namespace std;

int main(void)
{
   string s;         // vereinbaren
   string t="blubb"; // initialis. (wie in C)
   s = "hallo";      // NEU: einfache Zuweisung
   cout << "Bitte hallo eingeben: ";
   cin >> t;         
   if(s==t)          // NEU: Vergleich moeglich
      cout << "gleich" << endl;
   else
      cout << "verschieden" << endl;
   return 0;
}
