본문 바로가기
Beakjoon&프로그래머스/C언어

[백준/c언어]8370번 Plane

by 현장 2021. 1. 25.

 

-코드

 

#include <stdio.h>

int main(void){
int result, n,n2,k,k2;

scanf("%d %d %d %d", &n, &k, &n2, &k2);

result = (n*k)+(n2*k2);
printf("%d", result);

return 0;
}