// wrapAround.cpp   P. Conrad, 9/27/04

#include <iostream>
using namespace std; // being lazy today

int main(void)
{
  for (int i=0; i<5; i--)
    cout << i << " " << endl;
  cout << endl;
}

