NNN 角形の内角の和は, 180×(N−2)180×(N -2)180×(N−2) です。
xxxxxxxxxx
#include <iostream>
using namespace std;
int main() {
int N;
cin >> N;
cout << (N - 2) * 180 << endl;
}
n = int(input())
print(180*(n-2))