Skip to content

Commit a61ccf3

Browse files
Create J1.py
1 parent 2d7591a commit a61ccf3

File tree

1 file changed

+6
-0
lines changed
  • 2007/Python/Junior Problems

1 file changed

+6
-0
lines changed

2007/Python/Junior Problems/J1.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
l = []
2+
for t in range(3):
3+
l.append(int(input()))
4+
l.sort()
5+
l.pop(0)
6+
print(l[0])

0 commit comments

Comments
 (0)