문제 설명
실수 flo가 매개 변수로 주어질 때, flo의 정수 부분을 return하도록 solution 함수를 완성해주세요.
입출력
코드 풀이
def solution(flo): return int(flo)
출처: 프로그래머스 코딩테스트 연습