Saved Bookmarks
| 1. |
write algorithm and flowchart the inputs two numbers swaps these values without using third variable |
|
Answer» print(a, b) a, b = b, a print(a, b) |
|