[문제 링크] 👇 SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 풀이두 정수 중 하나라도 10 이상의 수가 존재하면 -1을 출력한다.그렇지 않으면 두 수를 곱한다. Solutiontest_case = int(input())for tc in range(1, test_case + 1): a, b = map(int, input().split()) result = 0 if a >= 10 or b >= 10: result = -1 else: result = a * b print("#%d %d" % (tc, result))