|
@@ -8,7 +8,7 @@ public class Main {
|
8
|
8
|
public static void main(String[] args){
|
9
|
9
|
int total;
|
10
|
10
|
Scanner input = new Scanner(System.in);
|
11
|
|
- System.out.println("Please input a number and it we will add 1 to it");
|
|
11
|
+ System.out.println("Please input a number and it we will add 1 to it.");
|
12
|
12
|
String number = input.next();
|
13
|
13
|
int n = Integer.parseInt(number);
|
14
|
14
|
|