blob: 36383f8d1dde005be5b30f098d7faa4331ee66d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
int gray_wolves;
int black_wolves;
cin >> gray_wolves >> black_wolves; cin.ignore();
// Write an answer using cout. DON'T FORGET THE "<< endl"
// To debug: cerr << "Debug messages..." << endl;
cout << "answer" << endl;
}
|