1 2 3 4 5 6 7 8
static const int a = 7; static int b = 8; static int sum; void main() { sum = a + b; }