school/brute-force/test.java
2020-11-11 08:47:37 -05:00

15 lines
273 B
Java

import java.util.Scanner;
public class LabProgram {
public static void main(String[] args) {
/* Type your code here. */
Scanner scnr = new Scanner(System.in);
int x;
int z = 0;
x = scnr.nextInt();
if (x > 9)
z = 3;
z = z + 1;
System.out.print(z);
}}