Select the output for the following set of code:
1. static void Main(string[] args)
2. {
3. int y = 5;
4. int x;
5. int k = (!(Convert.ToInt32(y) > 10))? x = y + 3 : x = y + 10;
6. Console.WriteLine(x);
7. Console.WriteLine(y);
8. Console.ReadLine();
9. }