// test-simple-arithmetic.c int main(int argc, int argv) { int a = 10; int b = 20; int c = a + b; return c; }