9 lines
100 B
C
9 lines
100 B
C
int main() {
|
|
int a;
|
|
int b;
|
|
a = 1 + 2 * 3;
|
|
b = 7;
|
|
a = a - b + 1;
|
|
return a;
|
|
}
|