Console.WriteLine("Write three words with a point in the end");
var ord = Console.ReadLine().Split(' ');
string a = ord[0];
string b = ord[1];
string c = ord[2];
Console.WriteLine(c+" "+b+" "+a+".")
So what I am trying to do is have these three words (a,b,c) in oppisite order and with a dot in the end. So Im trying to reomve the dot after string c and then add one after a. But can't figure out how.