본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 5340번 Secret Location

by 현장 2024. 8. 29.

-Code

res = []

for _ in range(6):
    line = input().rstrip()
    res.append(len(line))

print(f"Latitude {res[0]}:{res[1]}:{res[2]}")
print(f"Longitude {res[3]}:{res[4]}:{res[5]}")