## 문제

스택 구현하기


## CODE


sys.stdin.readline() 을 사용할때 매번 개행문자와 EOF을 지우는 과정을 거쳤었는데

```python

import sys
input = lambda : sys.stdin.readline().rstrip()

```

이거면 깔끔하게 된다.