Date:

1) 문제 링크

https://www.acmicpc.net/problem/8437

2) 접근

Big Integer를 다루는 문제이다. 10^100 이하 정도 되는 정수. Python에서도 float는 범위가 한정적이므로 // 연산자를 이용해서 오로지 int 자료형으로만 다룰 수 있도록 해결했다.

3) 풀이

a = int(input()); b = int(input())
print((a+b)//2, (a-b)//2, sep='\n')

4) 피드백

딱히 없다.

Leave a comment