1 2 3 4 5 6 7 8 9
void main() { int a; int b; println("This program prints the number 7"); a = 3; b = 4; println(a+b); }