A line containing an integer.
35
Output
A line containing a string.
Out
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.println(in.nextInt() % 2 == 0 ? "In" : "Out"); } }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments