Input
Output
#include <iostream> using namespace std; int main(){ int i=0; for(i=1; i<=5; i++){ cout << i << endl; break; } return 0; }