#include <iostream>

int main(void) {
    unsigned short edad = 5;
    
    while (edad >= 0) {
        --edad;
    }
    return 0;
}

