'Enter First Side: ' 'Enter Second Side: ' 'Enter Third Side: '
'Enter First Side: ' 'Enter Second Side: ' 'Enter Third Side: '
===========================================
=================
# Python program to swap two variables provided by the user
x = input('Enter value of x: ')
y = input('Enter value of y: ')
# create a temporary variable and swap the values
temp = x
x = y
y = temp
print('The value of x after swapping: {}'.format(x))
print('The value of y after swapping: {}'.format(y))
=============================================================================
nth = n1 + n2
print(nth,end=' , ')
# update values
n1 = n2
n2 = nth
count += 1