#include using namespace std; int main() { int i; for (int i = 1; i % 5 != 0; ++i){ } cout << "i = " << i << endl; return 0; }