#include <stdio.h>
int add_two_void_pointers(void *a, void *b) {
//To use void pointers we need to type cast the pointer
//Convert the void pointers to int pointers
int *a_ptr = (int *) a;
int *b_ptr = (int *) b;
return *a_ptr + *b_ptr;
}
int main() {
int x, y;
scanf("%d %d", &x, &y);
int result = add_two_void_pointers(&x, &y);
printf("%d", result);
return 0;
}