what?
package com.javarush.task.task04.task0412;
import java.util.Scanner;
/*
Положительное и отрицательное число
*/
public class Solution {
public static void main(String[] args) throws Exception {
Scanner get = new Scanner(System.in);
int s;
s = get.nextInt();
if (s == 20)
System.out.println(s * 2 );
if (s < 20 || s > 20)
System.out.println(s + 1 );
if (s == 0)
System.out.println(s == 0 );
}
}