import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int hap = 0 ;
for (int i = 1; i<= n; i++) {
hap += i;
}
System.out.printf("%d", hap);
}
}
hap ๋ณ์๋ฅผ ์ ์ธํด์ (์ด๊ธฐํ ํ์)
๋ฐ์ n ๊ฐ๋งํผ for๋ฌธ์ผ๋ก ๋๋ฆฌ๋ฉด์ ๋์ ํด์ฃผ๋ฉด ๋ !