#include using namespace std; int main(){ //i++ ===> i = i + 1 for(int i = 0; i < 10; i++){ cout << i << endl; } return 0; }