diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..137dc78 --- /dev/null +++ b/main.cpp @@ -0,0 +1,27 @@ +#include +#include + +using std::cout; +using std::cin; +using std::string; + +int main(void) { + + // Taking problem parameters + cout << "Length of sequence : "; + int N; cin >> N; + + cout << "Number of colors : "; + int M; cin >> M; + + cout << "Who plays [human/bot] : "; + string player; cin >> player; + + string opponent = "random"; + if(player == "bot") { + cout << "Who generates the sequence [random/human]: "; + cin >> opponent; + } + + return 0; +}