Help for this page

Select Code to Download


  1. or download this
    X=5
    Y=6
    ...
    Z=X
    X=Y
    Y=Z
    
  2. or download this
    X=X+Y
    Y=X-Y
    ...
    
    # I know this solution is not perfect:
    # when X and Y are big, there is a danger of overflow.