Complete these tasks to reinforce what you learned in this module.
Given string input = "abc";, use TryParse to convert it. Print the number if it works; otherwise print exactly Not a number: abc.
if (int.TryParse(input, out int n)) { ... } else { ... }using System;
class Program
{
static void Main()
{
// Convert with TryParse and report the outcome
}
}