diff options
Diffstat (limited to 'problems/somevigenere/attachments/template.cpp')
-rw-r--r-- | problems/somevigenere/attachments/template.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/problems/somevigenere/attachments/template.cpp b/problems/somevigenere/attachments/template.cpp new file mode 100644 index 0000000..e8c24fa --- /dev/null +++ b/problems/somevigenere/attachments/template.cpp @@ -0,0 +1,19 @@ +#include <iostream> +#include <string> +#include <vector> +#include <algorithm> + +using namespace std; + +int main() +{ + string plain_text; + getline(cin, plain_text); + string key; + getline(cin, key); + + // Write an answer using cout. DON'T FORGET THE "<< endl" + // To debug: cerr << "Debug messages..." << endl; + + cout << "Caesar would be proud" << endl; +} |