Submit solution

Points: 3
Time limit: 1.0s
Memory limit: 256M

Authors:
Problem type
WCIPEG 2017-2018 Test

The Carol Economy is a set of people who interact and share hearts (<3) with each other. In order to be part of the Carol Economy, each person must be friends with every other person. Carol is trying to set up a larger Carol economy between some of her friends. There are N people, and K pairs of people know each other. Help Carol calculate the amount of new friendships that must be made.

Input Specification

The first line of input contains the integers N (1N1000) and K (0K106).

Output Specification

Output the number of new friendships that must be made. This number is guaranteed to be non-negative.

Sample Input

Copy
10 8

Sample Output

Copy
37

Comments

There are no comments at the moment.