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