#abc074a. [abc074_a]Bichrome Cells

[abc074_a]Bichrome Cells

Problem Statement

We have an NtimesNN \\times N square grid.

We will paint each square in the grid either black or white.

If we paint exactly AA squares white, how many squares will be painted black?

Constraints

  • 1leqNleq1001 \\leq N \\leq 100
  • 0leqAleqN20 \\leq A \\leq N^2

Inputs

Input is given from Standard Input in the following format:

NN AA

Outputs

Print the number of squares that will be painted black.


Sample Input 1

3
4

Sample Output 1

5

There are nine squares in a 3times33 \\times 3 square grid. Four of them will be painted white, so the remaining five squares will be painted black.


Sample Input 2

19
100

Sample Output 2

261

Sample Input 3

10
0

Sample Output 3

100

As zero squares will be painted white, all the squares will be painted black.