Stay Hungry Stay Foolish

SWEA

[SWEA] 12221. 구구단2 (Python/D3)

dev스카이 2024. 10. 20. 15:19

[문제 링크] 👇

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com


 

풀이

두 정수 중 하나라도 10 이상의 수가 존재하면 -1을 출력한다.

그렇지 않으면 두 수를 곱한다.

 

 

Solution

test_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))