8f1093f
1 2 3 4 5 6 7
#include <iostream> int main() { int i; for (i = 0; i < 10; i++) std::cout << "i = " << i << "\n"; }