#include <iostream> int main() { int i = 5; while (i > 0) { std::cout << i << " "; i--; } }