본문 바로가기
Beakjoon&프로그래머스/Java

[백준/파이썬] 8393번 합

by 현장 2022. 8. 26.

-Code

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int res = 0;
		
		for (int i = 1; i <= n; i++) {
			res += i;
		}
		
		System.out.println(res);
	}

}