링크 www.acmicpc.net/problem/8370 8370번: Plane 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. www.acmicpc.net 풀이 입력으로 business class 좌석의 행과 열이, economic class 좌석의 행과 열이 주어진다. 모든 좌석의 개수를 출력하면 된다. n1*k1 + n2*k2 코드 //8370_Plane #include using namespace std; int n1, k1, n2, k2; int main() { scanf("%d ..