diff options
Diffstat (limited to 'problems/somevigenere/attachments/template.java')
-rw-r--r-- | problems/somevigenere/attachments/template.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/problems/somevigenere/attachments/template.java b/problems/somevigenere/attachments/template.java new file mode 100644 index 0000000..cb4ceea --- /dev/null +++ b/problems/somevigenere/attachments/template.java @@ -0,0 +1,17 @@ +import java.util.*; +import java.io.*; +import java.math.*; + +class Solution { + + public static void main(String args[]) { + Scanner in = new Scanner(System.in); + String plainText = in.nextLine(); + String key = in.nextLine(); + + // Write an answer using System.out.println() + // To debug: System.err.println("Debug messages..."); + + System.out.println("Caesar would be proud"); + } +} |