I execute the following code and I get no errors, and in the output I see the Success!
message. Can you please explain this strange behaviour.
public class Main {
public static void main(String[] args) {
int р = 0;
int p = 1;
if(р == 0 && p == 1) {
System.out.println("Success!");
}
}