#!/usr/bin/env python # A Secret encryption program using ASCII values as a cipher # Written by Al Truism def main(): #print "This program will encode secret messages that can be decoded using \n" message = raw_input("+ Enter the message to be encoded: ") print "\nThe encoded cipher is:" for ch in message: print ord(ch) + 83, print print if __name__ == '__main__': main()