7 líneas
80 B
C
7 líneas
80 B
C
int main() {
|
|
int x = 10;
|
|
int y = 32;
|
|
int z = x + y;
|
|
return z;
|
|
}
|