#include <iostream> 

int main() 
{ 
  int i; 

  for (int i = 0; i < 3; ++i) 
  { 
    std::cout << "Geben Sie eine Zahl ein: " << std::flush; 
    std::cin >> i; 
  } 
} 
