#include void two(int* input) { if (*input % 2 != 0) { printf("ungerade"); } } int main() { int input; scanf("%d", &input); two(&input); }