fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string temp = "73";
  8. int tempc0 = Convert.ToInt32(temp[0].ToString());
  9. int tempc1 = Convert.ToInt32(temp[1].ToString());
  10. Console.WriteLine(tempc0 + "*" + tempc1 + "=" + tempc0*tempc1);
  11. }
  12. }
Success #stdin #stdout 0.03s 34880KB
stdin
Standard input is empty
stdout
7*3=21