[프래그래머스] 문자열 정수로 바꾸기(Python)

문제 설명 

문자열 s를 숫자로 변환한 결과를 반환하는 함수, solution을 완성하세요.

첫 코드

def solution(s):
    return int(s)