import java.util.Scanner;

public class L9 {
	public static void main(String[] args) {
	
		Scanner kb = new Scanner(System.in);
		//int input = kb.nextInt();

		boolean isEven = false;
		if (input % 2 == 0) {
			isEven = true;
		}
		System.out.println("isEven: " + isEven);

		/* ?: example */

		boolean isEven = (input % 2 == 0) ? true : false;
			
		System.out.println("isEven: " + isEven);

		int x = (input > 10) ? 1 : 0;

		int counter = 0;
		while(counter <= 10) {
			System.out.print(counter + " ");
			counter++;
		}		
		System.out.println();
	
		/* for loop equivalent */

		for(int i = 0; i <= 10; i++) {
			System.out.print(i + " ");
		}
		System.out.println();
	
		/* write a fragment of code that prints the 
			values from 5 to 25 using a for-loop */

		for(int i = 5; i <= 25; i++) {
			System.out.print(i + " ");
		}
		System.out.println();

		/* write a fragment of code that prints the
			multiples of 5 from 5 to 100 */	

		for (int i = 5; i <= 100; i = i + 5) {
			System.out.print(i + " ");
		}
		System.out.println();

		int i = 5;
		while(i <= 100) {
			System.out.print(i + " ");
			i = i + 5;
		}		
		System.out.println();

		for (int j = 5; j <= 100; j+=5) {
			System.out.print(j + " ");
		}
		System.out.println();

	}
}
