Domain changed to archive.palanq.win . Feb 14-25 still awaits import.
[8 / 3 / ?]

ID:Dfq82pKo No.2600722 View ViewReplyOriginalReport
#include <iostream>

using namespace std;

int main()
{
int i = 10;
while(i --> 0) {
cout << 10 - i << endl;
}

return 0;
}