#include using namespace std; int main() { int i, k ; i = 1; while( i <= 5 ) { cout << " i = " << i << "\n"; i ++; } k = 1; while( k <= 5 ) { cout << " k = " << k << "\n"; k ++; } }