6 líneas
81 B
C
6 líneas
81 B
C
int main() {
|
|
int x = 10;
|
|
int y = 20;
|
|
return x + y; // Should be 30
|
|
}
|