any help?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Secretscore() { Console.WriteLine ("and his exam score actually is 60 :P"); } static void Func(int x) { Console.WriteLine(x*2); } static void Main(string[] args) { string name; string age; name = Console.ReadLine(); age = Console.ReadLine(); Console.WriteLine ("hello {0}",name); Console.WriteLine (" {0} age is {1}",name,age); Secretscore (); int jokowi = 100; int prabowo = 50; if (jokowi>prabowo) { Console.WriteLine ("JOKOWI WIN"); } else { Console.WriteLine ("PRABOWO WIN"); } Func(5); //Outputs 10 Func(12); //Outputs 24 Func(42); //Outputs 84 } } } } the error sign says ..\Playground\(53,1): error CS1022: Type or namespace definition, or end-of-file expected