import java.util.*;
public class Exercise {
public static void main(String[] args){
Scanner in = new Scanner(System.in);
System.out.print("Input a number: ");
int n = in.nextInt();
if (n % 2 == 0) {
System.out.println(1);
}
else {
System.out.println(0);
}
}
}
output:
need an explanation for this answer? contact us directly to get an explanation for this answer