`using system.diagnostic;
class Program{
static void main(String[] args){
Stopwatch Timer = new Stopwatch();
//here is your code
Timer.Stop();
Console.Writeline("Time Taken:" +Timer.Elasped);
}
}
`
using system.diagnostic; class Program { static void main(String[] args){ Stopwatch Timer = new Stopwatch(); //here is your code Timer.Stop(); Console.Writeline("Time Taken:" +Timer.Elasped); } }