본문 바로가기
Python/CodeUp

1023 - 실수 1개 입력받아 부분별로 출력하기

by GLOWWW 2021. 2. 18.
a, b = input().split(".")
print(int(a))
print(int(b))

댓글