Saved Bookmarks
| 1. |
Write the output from the following code:x= 10y = 20if (x>y):print x+yelse:print x-y |
|
Answer» The output is -10 |
|