#include <stdio.h>

int polsmos(int a, int b);

int main() {
    int apot1, apot2;

    apot1 = polsmos(100, 22);
    apot2 = polsmos(-20, 34);

    printf("Το γινόμενο 100 * 22 = %d\n", apot1);
    printf("Το γινόμενο -20 * 34 = %d\n", apot2);

    return 0;
}