using System.Collections.Generic;
using System.Threading.Tasks;
static void Swap(ref int x, ref int y)
static void Main(string[] args)
Console.WriteLine("Geef je eerste getal : ");
int a = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Geef je tweede getal : ");
int b = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Het eerste getal is nu " + a);
Console.WriteLine("Het tweede getal is nu " + b);