본문 바로가기

백준/C++

[C++] 백준 2163번 - 초콜릿 자르기

728x90

 

문제 2163번

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

 

 

#include <iostream>
using namespace std;

int main() {
    int n, m;
    cin >> n >> m;
    cout << (n - 1) + (m - 1) * n << '\n';

    return 0;
}

 

 

 

 

 

 

728x90