#include <stdio.h>
int polsmos(int x, int y)
{
    return(x*y);
}
int main()
{
    int a=100, b=22, c=-20, d=34;
    printf("100*22= %i\n 20*34= %i", polsmos(a,b), polsmos(c,d));
return 0;
}

