#include <stdio.h>

int main(int argc, char* argv[]) {
int v0 = (3 * 7);
int v1 = (v0 * 3);
printf("%d\n", (v1 - 21));
}
