aboutsummaryrefslogtreecommitdiff
path: root/problems/somevigenere/attachments/template.py
blob: 489505f88d12c4c0d9b0fa4d753d4d44e968fae5 (plain)
1
2
3
4
5
6
7
8
9
10
import sys
import math

plain_text = input()
key = input()

# Write an answer using print
# To debug: print("Debug messages...", file=sys.stderr, flush=True)

print("Caesar would be proud")