BOJ/백준-27323-Python

cosmos·2023년 3월 31일
0
post-thumbnail

문제

코드

# https://www.acmicpc.net/problem/27323
# boj, 27323: 직사각형, Python3
def solve(a: int, b: int) -> int:
    return a * b

if __name__ == '__main__':
    a = int(input())
    b = int(input())

    print(solve(a, b))

결과

출처 & 깃허브

boj
Github

0개의 댓글