#include <iostream> 

int main() 
{ 
  int i; 

  do 
  { 
    std::cout << "Geben Sie eine Zahl groesser gleich 100 ein: " << std::flush; 
    std::cin >> i; 
    if (!std::cin.good()) 
        break; 
  } 
  while (i < 100); 
} 
