We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d7591a commit a61ccf3Copy full SHA for a61ccf3
2007/Python/Junior Problems/J1.py
@@ -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