#include <stdio.h>

int main() 
{
    int a = 40;
    int c = 212;
    int test = (-8+22)*a-10+c/2;
    printf("%d\n",test);

    return 0;
}