#include <iostream> 

int main() 
{ 
  int i; 

  while (true) 
  { 
    std::cout << "Geben Sie eine negative Zahl ein: " << std::flush; 
    std::cin >> i; 
    if (i >= 0) 
      continue; 
    break; 
  } 
} 
