The goal of this task is to be able to run the following program in a concrete interpreter: ``` class C { int m(){ int x = 3+1; int y = 4; return x*y; } } ```