Input
Output
#include<stdio.h> void main(){ int a=1; do{ printf("%d \n",a); a++; }while(a<=5); }