Year 2 compilers coureswork
/* ##answer: 14 */ int aplusb(int a, int b) { return a + b; } int main() { int y = aplusb(aplusb(2, 3), aplusb(4, 5)); return y; }