#include "input.h"
int differenz(void) {
int min = get_input("Minuend");
int sub = get_input("Subtrahend");
return min - sub;
}