Saved Bookmarks
| 1. |
X =10Y=20if (X>Y)print X+Yelseprint X-Y |
Answer» Required Answer:-Correct Cσde:Y = 20 if (X>Y): print(X+Y) ELSE: print(X-Y) To Find:
Output:>> -10 Explanation:
Refer to the attachment for output. •••♪ |
|