Browse Source

Add 'M.py'

webturing 4 years ago
parent
commit
5373a1e521
1 changed files with 3 additions and 0 deletions
  1. 3 0
      M.py

+ 3 - 0
M.py

@@ -0,0 +1,3 @@
+a= list(map(int, input().strip().split()))
+a.reverse()
+for e in a:print(e)