using System;
public class Program
{
public static void Main()
float ersteZahl = 7;
float zweiteZahl = 2;
float summe = Addition(ersteZahl; zweiteZahl);
}
static float Addition( ersteZahl, zweiteZahl)
Summe = ersteZahl + zweiteZahl;
return Summe;