123456789101112131415161718
#include <iostream> using namespace std; int main () { int a = 101; while (a > 100) { cout << a << " "; cin >> a; } }