#include <stdio.h>
int main(int a,int b){
    return a+b;
}
int main() {
    int a=10,b=20;
    int *g=&a;
    int *h=&b;
    printf("%d",re(a,b));
}