4661: B3789 [信息与未来 2023] 程序分析
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description

Input

Output

Sample Input Copy
10
if (x > 1) {
y = 2;
if (x > 10) {
y = 1;
y = 4;
if (x < 5) {
y = 3;
}
}
}
Sample Output Copy
0 2 4
HINT
