https://www.acmicpc.net/problem/15552 15552번: 빠른 A+B 첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다. www.acmicpc.net 핵심 아래의 코드를 main에 넣으시면 cin과 cout의 속도가 비약적으로 상승합니다. ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cs 혹은 아래와 같은 방식으로 적으시고 main에 fastio()를 선언해 줍니다. #define fastio() ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); cs 1..