package org.example;
public class Main {
public static void main(String[] args) {
for (int i = 0; i < 5; i++) {
if (i == 3) {
System.out.println("The value of i is " +i );
}
}
}
}
// Output: The value of i is 3