#!/usr/bin/python import sys import os class Unbuffered(object): def __init__(self, stream): self.stream = stream def write(self, data): self.stream.write(data) self.stream.flush() def writelines(self, datas): self.stream.writelines(datas) self.stream.flush() def __getattr__(self, attr): return getattr(self.stream, attr) sys.stdout = Unbuffered(sys.stdout) print" /$$ /$$ /$$$$$$ /$$ /$$$$$$$ /$$ /$$ /$$ /$$" print" | $$ /$$/ /$$__ $$| $$ | $$__ $$| $$ /$ | $$| $$$ | $$" print" | $$ /$$/ | $$ \__/| $$ | $$ \ $$| $$ /$$$| $$| $$$$| $$" print" | $$$$$/ | $$$$$$ | $$ | $$$$$$$/| $$/$$ $$ $$| $$ $$ $$" print" | $$ $$ \____ $$| $$ | $$____/ | $$$$_ $$$$| $$ $$$$" print" | $$\ $$ /$$ \ $$| $$ | $$ | $$$/ \ $$$| $$\ $$$" print" | $$ \ $$| $$$$$$/| $$$$$$$$ | $$ | $$/ \ $$| $$ \ $$" print" |__/ \__/ \______/ |________/ |__/ |__/ \__/|__/ \__/" print" Author : Bagus Widhyasmara" print "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" print" " print "clue --> The 3rd answer can be read use indonesian and english language !" print" " name = raw_input("Masukan nama anda : ") print("Selamat datang "+name) while True: x = raw_input("enter your born place ") y = input("enter your born year ") z = input("how many letters 'o' on born ? ") if z == 1: perlin = raw_input("silahkan ketik perintah linux apapun! ") os.system(perlin)