import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.*; public class _480 { public static void main(String[] args) throws IOException { new _480().solve(); } void solve() throws IOException { try (final Scanner in = new Scanner(System.in)) { int n = in.nextInt(); System.out.println(n * (n + 1) / 2); } } // for debug static void dump(Object... o) { System.err.println(Arrays.deepToString(o)); } }