[백준]2163 초콜릿 자르기 jyukki included in 백준 2017-11-30 50 words One minute Contents https://www.acmicpc.net/problem/2163 풀이: N x M 크기의 초콜릿을 자르는 최소의 경우의 수 N * M - 1 코드: 1 2 3 4 5 6 7 8 #include <iostream> using namespace std; int main(void) { int n, m; cin >> n >> m; cout << n*m - 1 << endl; return 0; } Please enable JavaScript to view the comments powered by Disqus.