#!/usr/bin/perl

use MIME::QuotedPrint qw(encode_qp);

while (<>) {
    print encode_qp($_);
}

