12345
for(int x=0;x<=500;x++) cout << x << " "; for(int x=500; x>=0;x--) cout << x << " "; cout << "We're done!!" << endl << end;