#include <iostream> using namespace std; int main() { int c; for(c=160; c >= 1; c=c-1) // cycle for cout << c << "; "; return 0; }