#include <stdio.h>
int add_two_void_pointers(void *a, void *b) {
// Your logic here
int *p1 =(int *)a;
int *p2=(int *)b; //Cast both the void pointer to int and then return it's sum
return *p1+*p2;
}
int main() {
int x, y;
scanf("%d %d", &x, &y);
int result = add_two_void_pointers(&x, &y);
printf("%d", result);
return 0;
}