1. #----------------------------------------------------
  2. #---Lottery Program made by Camarzh for the Silver---
  3. #---Squids corp on EvE. ?Camarzh & SS Corp-----------
  4. #---See that? If you're not SS or Camarzh, GET OFF.--
  5. #----------------------------------------------------
  6.  
  7. date = str(raw_input("What is the date?"))
  8. name = str(raw_input("Entrants name: "))
  9. numbers = str(raw_input("Entrants numbers: "))
  10. amount = str(input("Amount of numbers: "))
  11. isk = str(input("Cost per ticket: "))
  12. log = open(name+"---"+date, "w").write(date+"-"+name+"-"+numbers+"-"+amount+"-"+isk)
  13.  
  14.  
  15.  
  16.  
  17.  
  18.