From 9e44085fbcd4910f61e6411878e1afd72fdf61a2 Mon Sep 17 00:00:00 2001 From: Natasha Choudhary Date: Fri, 2 Oct 2020 10:15:27 +0530 Subject: [PATCH] Made the code readable --- Swap | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Swap b/Swap index a599d89..0b97c9c 100644 --- a/Swap +++ b/Swap @@ -2,10 +2,11 @@ int main() { int a,b; +cout<<"Enter the numbers you wish to swap "; cin>>a>>b; int temp=a; a=b; b=temp; -cout<