6 lines
60 B
C
6 lines
60 B
C
|
|
int main() {
|
|
int x = 10;
|
|
x = x + 1;
|
|
return x;
|
|
} |