import java.io.File; import java.io.FileNotFoundException; import java.util.Scanner; public class ROT13 { Integer diff; ROT13(Character cs, Character cf) { this.diff=Math.abs((int)cs-(int)cf); } ROT13() { this.diff = 13; } public String crypt(String text) throws UnsupportedOperationException { String str=""; for (int i=0; i