6 lines
46 B
C
6 lines
46 B
C
|
int main() {
|
||
|
int x=2;
|
||
|
x+=2;
|
||
|
return x;
|
||
|
}
|