문제
Byteland Airlines recently extended their aircraft fleet with a new model of a plane. The new acquisition has n1 rows of seats in the business class and n2 rows in the economic class. In the business class each row contains k1 seats, while each row in the economic class has k2 seats.
Write a program which:
- reads information about available seats in the plane,
- calculates the sum of all seats available in that plane,
- writes the result.
입력
In the first and only line of the standard input there are four integers n1, k1, n2 and k2 (1 ≤ n1, k1, n2, k2 ≤ 1 000), separated by single spaces.
출력
The first and only line of the standard output should contain one integer - the total number of seats available in the plane.
예제 입력
2 5 3 20
예제 출력
70
문제 설명
비즈니스 클래스에 n1열의 좌석이 있고 이코노미 클래스에 n2열의 좌석이 있다. 비즈니스 클래스에서는 각 열에 k1개의 좌석이 있고 이코노미 클래스에서는 각 열에 k2개의 좌석이 있다. 비즈니스 클래스와 이코노미 클래스의 총 좌석의 개수를 구해라.
Solution
#include <iostream>
using namespace std;
int main() {
int n1, k1, n2, k2;
cin >> n1 >> k1 >> n2 >> k2;
cout << n1*k1 + n2*k2;
return 0;
}
'BOJ 코딩테스트 > Bronze' 카테고리의 다른 글
BOJ 1924번 : 2007년 (Python/Bronze 1) (0) | 2022.09.15 |
---|---|
BOJ 15596번 : 정수 N개의 합 (C++/Bronze 2) (0) | 2022.09.14 |
BOJ 1157번 : 단어 공부 (C++/Bronze 1) (0) | 2022.08.30 |
BOJ 1152번 : 단어의 개수 (C++/Bronze 2) (0) | 2022.08.30 |
BOJ 1264번 : 모음의 개수 (C++/Python/Bronze 4) (0) | 2022.08.22 |