11 lines
108 B
C
11 lines
108 B
C
int main() {
|
|
int z;
|
|
int x;
|
|
x = 56;
|
|
int y;
|
|
x = y;
|
|
y = 10;
|
|
z = x;
|
|
return z;
|
|
}
|