12345678910111213141516171819202122232425 |
- /**
- * Created by iyasuwatts on 10/17/17.
- */
-
- import java.util.*;
-
- public class Main {
-
-
- public static void main(String[] args){
- System.out.print("Please input a number");
- Scanner input = new Scanner(System.in);
-
- int num = input.nextInt();
- int store = 0;
-
- for (int i = 1; i <= num; i++) {
- store += i;
- }
-
- System.out.println(store);
-
- }
- }
|