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<