Q12.Consider the following code snippet. For what values as input, after execution, does the above code snippet not produce any output but runs without any error?
```
x = int(input())
y = int(input())
if x > 5:
if y > 15:
print("A")
```
Save
Check
Details
Q12
16 Jul 2023
Q12.Consider the following code snippet. For what values as input, after execution, does the above code snippet not produce any output but runs without any error?
```
x = int(input())
y = int(input())
if x > 5:
if y > 15:
print("A")
```