public class counting{
public static void main(
String args[]){
for(int i=0;i<10;i++){
System.out.print(" "+i);
}
}
}
/*Result:
0 1 2 3 4 5 6 7 8 9
The way code given above prints 0 to 9 integers. Can we write a code to
print all small alphabets in this fashion
a b c d e f g h i j k l m n o p q ......z*/