using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Zufallszahlen
{
class Program
{
static void Main(string[] args)
{
Random rnd = new Random();
int zufallsZahl = 0;
zufallsZahl = rnd.Next(1, 101);
Console.WriteLine(zufallsZahl);
}
}
}