알고리즘 문제 풀기/BOJ
BOJ 11022 - A+B - 8
bug_maker
2019. 7. 28. 16:40
https://www.acmicpc.net/problem/11022
BOJ 11022 - A+B - 8
작성언어: Python3
t = int(input())results = []for i in range(1, t+1): num1, num2 = map(int, input().split()) results.append('Case #' + str(i) + ': ' + str(num1) + ' + ' + str(num2) + ' = ' + str(num1+num2))for result in results: print(result)pc 환경에서 코드를 보는 것을 권장합니다.