fork(1) download
  1. class X
  2. Public Shared Sub Main()
  3. Dim text As String = System.Console.ReadLine()
  4. Dim bytes As Byte() = System.Text.Encoding.GetEncoding("US-ASCII",New System.Text.EncoderExceptionFallback(),New System.Text.DecoderExceptionFallback()).GetBytes(text)
  5.  
  6. Dim temp As Byte
  7. For Each b As Byte in bytes
  8. temp = temp XOR b
  9. Next
  10. Dim BBCH As Byte
  11. Dim BBCL As Byte
  12.  
  13. BBCH = temp >> 4
  14. BBCL = temp << 4
  15.  
  16. System.Console.WriteLine(BBCH)
  17. System.Console.WriteLine(BBCL)
  18.  
  19.  
  20. End Sub
  21. End class
stdin
ABCD
compilation info
Visual Basic.Net Compiler version 0.0.0.5914 (Mono 2.4.2 - r)
Copyright (C) 2004-2008 Rolf Bjarne Kvinge. All rights reserved.


Assembly 'prog, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' saved successfully to '/home/kO7qxY/prog.exe'.
Compilation successful
Compilation took 00:00:01.0804490
stdout
0
64