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