//loops --> for loops
#include <iostream>
int main() {
for(int i =0;i<5;i++){
    cout << i <<" ";
}

return 0;
}