Eine reife Aufgabe? 
Multiplizieren, einmal anders!

1.Übersetze diesen Algorithmus in einen Pseudocode und stelle ihn auch als Struktogramm oder Ablaufdiagramm (formal) dar.
2.Implementiere diesen Algorithmus auf einem Tabellenkalkulationsblatt, in dem du diesen mit geeigneten Funktionen weitestgehend automatisierst.
3.Implementiere diesen Algorithmus in einer dir geläufigen Programmiersprache und gehe auch darauf ein, welche Datentypen und Ablaufstrukturen für die Lösung dieses Problems notwendig sind.
4.Wie löst der Computer das Problem, eine gerade Zahl zu erkennen?
5.Was wie Zauberei aussieht hängt in Wirklichkeit mit dem binären Zahlensystem zusammen. Beweise diese Multiplikationsart über Binärzahlen. Und gibt es auch eine intuitive Erklärung dafür, warum dieses Verfahren funktioniert?
6.Welche Vor- und Nachteile hat diese Art zu Multiplizieren? Warum wird diese Art der schriftlichen Multiplikation heute nicht mehr gelehrt und gelernt?
7.Macht es heute überhaupt noch Sinn, die Schülerinnen und Schüler jahrelang Multiplikationen mit größeren Zahlen ausführen zu lassen und sie mittels einer Vorschrift, die sie nicht verstehen, zu „programmieren“? Wo doch einfache Taschenrechner diese Arbeit viel besser erledigen!
Sie schaffen es. Wenn nicht, bitte ihre/n Studienkollegin/en fragen.


Weekdays in December (easy)
Sometimes, advent can be a terribly stressy time. One has to finish things that need to be done this year,
get presents for you loved ones and organize christmas dinner.
Eventually, one does not know anymore what weekday it is.

Problem
Implement a program that tells you the current weekday based on the date in December for this year.
An input line will have the format "December n" where n is an integer number between 1 and 31.
Calculate the respective weekday and print it (English language, capitalized first letter)
to standard output followed by a newline. If the input consists of the word "end",
the program should terminate. There will be no other input types except from the ones described.

Sample Input
December 1
December 16
December 7
end

Sample Output
Friday
Saturday
Thursday

Reusing candles (hard)
On each of the four sundays before Christmas, Mr. MacThrifty is lighting candles.
On the first Sunday it is one candle, on the second it is two candles, on the third three candles
and on the fourth all four candles.
Each sunday, any of four candles can be used, but it is not possible to switch between candles during the day.
The candles will burn for a fixed time where Mr. MacThrifty holds a session of contemplation.
The session time is the same on each sunday. Since Mr. MacThrifty is a bit... thrifty ...,
he is going to reuse last years candles, that is four candles with various lengths.

Problem
Write a program that calculates the maximum session time for a given set of four candles.
Your program shall read lines with 4 space-separated integer values corresponding to the candle lengths in cm.
For each cm a candle will burn for one hour. Calculate and print the maximum possible session length
with these candles in minutes, then read the next line.
When a line contains the word "end", the program shall terminate.

Sample Input
1 2 3 4
1 1 1 1
end

Sample Output 60
20