using System;
public class Program
{
public static void Main()
int AnzahlS = 100;
int AnzahlPC = 98;
Console.WriteLine("Es gibt {0} Schueler und {1} PC" , AnzahlS, AnzahlPC);
}