Input
Output
public class Dowhile { public static void main(String []args) { int a=1; do{ System.out.println(a); a++; }while(a<=5); } }