Problem: s2
    Swap 2 values
#include <stdio.h>            
main()  
{  
     int first, second;
   
     first = 1;  
     second = 2;  
     first = second;  
     second = first;  
      
     return 0;        
}