int cops_calculator (int a) {
int res = a * 100 + 20 - 8;
return res * 2 / 2;
}
void main () {
int magic_number = 13;
cops_calculator(magic_number);