using System.Collections.Generic;
public static void Main()
List<int> numbers = new List<int> {
10, 20, 30, 40, 50, 60, 70, 80, 90, 100
List<int> removeNumbers = new List<int> {
Console.WriteLine("1. Numbers filtering. Use the variable 'removeNumbers' containing the numbers to be removed from variable 'numbers'.");
Console.WriteLine("2. After filtering the numbers, show the sum of filtered numbers with 2 decimal places.");
foreach (int i in removeNumbers) {
Console.WriteLine("Answer: ");
Console.Write("Filtered Numbers: ");
foreach (int i in numbers) {
foreach (int i in numbers) {
Console.Write("Total of Filtered Numbers is: " + string.Format("{0:0.00}", total));