9
Variable
#include <stdio.h>
int main(void) {
    int a;
    int b;
    a=100;
    b=200;
    printf("%d\n",a+b);
    return 0;
}