#!/usr/bin/env python

import base64
import sys
import string

my_base64chars  = "+AzByCxDwEvFuGtHsIrJqKpLoM0123456789nNmOlPkQjRiShTgUfVeWdXcYbZa/"
std_base64chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
s = "BAZINGA ! You won ! *KISS*"
s = s.translate(string.maketrans(my_base64chars, std_base64chars))
data = s

print data