Question from the Objective-C test

What is the output of the following Objective-C code? int main(int argc, const char * argv[]) { int a = 1; int b = 2; int c = a + b; NSLog(@"%d", c); return 0; }