If you attend class on
10/15,
you will have a chance to do this
assignment in-class for the
C22 grade
Write the 3AC code for the following program
int v(int a, int b){
if (a > 1){
if (b < 3){
return a + b;
}
}
}