aboutsummaryrefslogtreecommitdiff
path: root/problems/somevigenere/attachments/template.cpp
blob: e8c24fa7c321ded65ba57b1c28eac3681b666e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
}