15 lines
140 B
Plaintext
15 lines
140 B
Plaintext
//y = 100;
|
|
//print y;
|
|
|
|
int x =10*10;
|
|
print x;
|
|
int y = 5;
|
|
|
|
if(true){
|
|
// int x = 10;
|
|
int y = x*x;
|
|
print x;
|
|
print y;
|
|
}
|
|
|
|
print y; |