#include "input.h" int summe(void) { int s1 = get_input("Erster Summand"); int s2 = get_input("Zweiter Summand"); return s1 + s2; }