import sequtils import strutils import strformat var n = stdin.readLine.parseint var ans = 0 for value in 1..n: ans += value echo ans