week-5 #6

Merged
Kenwood merged 12 commits from week-5 into master 2021-02-08 00:20:27 -05:00
1 changed files with 6 additions and 0 deletions
Showing only changes of commit ba5ac1f29a - Show all commits

6
5/5.18 LAB/main.py Normal file
View 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))