using System;
using System.Text;
class Program
{
static void Main() {
string s = "c# programming";
byte[] ascii_values = Encoding.ASCII.GetBytes(s);
foreach(byte val in ascii_values) {
Console.Write(val + " ");
}
}
}
/*
run:
99 35 32 112 114 111 103 114 97 109 109 105 110 103
*/