#!/usr/bin/env python3 n, k = map(int, input().split()) r = n * (n + 1) // 2 l = - n * (n + 1) // 2 + (n - k) * (n - k + 1) print((r - l) // 2 + 1)