package JAVA;
public class Assignment2 { // Declaration of the Assignment2
public static void main(String[] args) {// Main method - program execution begins
int i = 1; // Initialize number variable to 1
while (i <= 30) {// Continue looping as long as number is less than or equal to 30
System.out.print(i + " "); // Display the current value of number
i++;// Increment number by 1 after each iteration
} // Close while loop
} // Close main method
} // Close Question2 class