#include <stdio.h>

int polsmos_int(int a, int b);
double polsmos_double(double a, double b);

int main() {
    int apot1;
    double apot2;

    apot1 = polsmos_int(41, 12);
    apot2 = polsmos_double(21.2, 412.123);

    printf("Το γινόμενο 41 * 12 = %d\n", apot1);
    printf("Το γινόμενο 21.2 * 412.123 = %.6f\n", apot2);

    return 0;
}

int polsmos_int(int a, int b) {
    return a * b;
}

double polsmos_double(double a, double b) {
    return a * b;
}