import java.util.Scanner;https://youtu.be/vLqK_O3BocE
public class loops_a {
public static void main(String[] args) {
// Syntax
// while (argument) {
//
// }
// int i = 0;
// while (i<100){
// System.out.println(i);
// i++;
// }
// Scanner sc = new Scanner(System.in);
// int i = sc.nextInt();
// int n = 1;
// while (n<=10){
// System.out.println(i*n);
// n++;
// }
// for (argument){
// }
// for (int i = 0; i<100; i++){
// System.out.println(i);
// }
// Scanner sc = new Scanner(System.in);
// int i = sc.nextInt();
// for (int n = 0; n<=10; n++){
// System.out.println(i*n);
// }
int i = 0;
do {
System.out.println(i);
i++;
}while (i <= 100);
}
}

September 8, 2023