atcoder#MSOLUTIONS2019A. Sum of Interior Angles

Sum of Interior Angles

Score : 100100 points

Problem Statement

Given an integer NN not less than 33, find the sum of the interior angles of a regular polygon with NN sides.

Print the answer in degrees, but do not print units.

Constraints

  • 3N1003 \leq N \leq 100

Input

Input is given from Standard Input in the following format:

NN

Output

Print an integer representing the sum of the interior angles of a regular polygon with NN sides.

3
180

The sum of the interior angles of a regular triangle is 180180 degrees.

100
17640