#include <iostream> using namespace std; int main(void){ int i; for (i = 0; i < 3; i++){ cout.width(5); cout << i << '\n'; } }