import com.anotherdetour.Base64;
public class Main {
public static void main(String[] args) {
String input = "Hello, Base64!";
String encoded = Base64.encode(input.getBytes());
System.out.println("Encoded: " + encoded);
byte[] decoded = Base64.decode(encoded);
String output = new String(decoded);
System.out.println("Decoded: " + output);
}
}