fork download
  1. stos =[]
  2. while True:
  3. try:
  4. operacja=input()
  5. if operacja=='+':
  6. if len(stos)>=10:
  7. print(':(')
  8. else:
  9. print(':)')
  10.  
  11. stos.append(input())
  12. elif operacja =='-':
  13. if len(stos)>0:
  14. print(stos[len(stos)-1])
  15. stos.pop(len(stos)-1)
  16. else:
  17. print(':(')
  18. except:
  19. break
  20.  
Success #stdin #stdout 0.03s 9720KB
stdin
+
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
0
+
1
-
-
-
-
-
-
-
-
-
-
-
stdout
:)
:)
:)
:)
:)
:)
:)
:)
:)
:)
:(
0
9
8
7
6
5
4
3
2
1
:(