void setup () { int a; int b; b = 33; a = b + 20; print("The value of b is: "); println(b); print("The value of a is: "); println(a); }