Solve 5.18 LAB
This commit is contained in:
parent
8391478991
commit
ba5ac1f29a
|
@ -0,0 +1,6 @@
|
|||
def swap_values(user_val1, user_val2):
|
||||
return user_val2, user_val1
|
||||
|
||||
if __name__ == '__main__':
|
||||
val1, val2 = swap_values(input(), input())
|
||||
print('{0} {1}'.format(val1, val2))
|
Loading…
Reference in New Issue