import java.util.Scanner; public class No9000 { public static void main(String[] args) { Scanner s = new Scanner(System.in); Integer n = s.nextInt(); Integer sum = n * (n + 1) / 2; System.out.println(sum); } }