Solve 5.18 LAB
This commit is contained in:
6
5/5.18 LAB/main.py
Normal file
6
5/5.18 LAB/main.py
Normal file
@@ -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))
|
||||||
Reference in New Issue
Block a user