Main.java 467B

123456789101112131415161718192021222324
  1. /**
  2. * Created by iyasuwatts on 10/17/17.
  3. */
  4. import java.util.*;
  5. public class Main {
  6. public static void main(String[] args){
  7. int total;
  8. Scanner input = new Scanner(System.in);
  9. System.out.println("Please input a number and it we will add 1 to it.");
  10. String number = input.next();
  11. int n = Integer.parseInt(number);
  12. total = n + 1;
  13. System.out.println(total);
  14. }
  15. }