본문 바로가기

코딩

[Python] 백준 #27323. 직사각형

https://www.acmicpc.net/problem/27323

 

27323번: 직사각형

정수 A, B 가 주어진다. 세로 길이가 A cm, 가로 길이가 B cm 인 아래와 같은 직사각형의 넓이를 cm2 단위로 구하시오.

www.acmicpc.net

 

# 27323 - Python 3

import sys

input = sys.stdin.readline

x = int(input())
y = int(input())

print(x * y)