public static void Main()
string input = Console.ReadLine();
Console.WriteLine("This is " + methTest(input));
public static string methTest(string input)
return input + input + input;
public Score scoreCard {get; set;}
public string Name {get; set;}
public int aces {get; set;}
public int twos {get; set;}
public int threes {get; set;}
public int fours {get; set;}
public int fives {get; set;}
public int sixes {get; set;}
return aces+twos+threes+fours+fives+sixes;
public int DieNumber {get; set;}
public int? CurrentValue {get; private set;}