Xu Han

#include <me>

#include <you>

#include <cstdio>

int main()

{

me.name = "Hanxu";

me.sex = "Male";

me.university = "Fudan University China";

me.major = "Mathematics";

me.motto = "Think different";

me.interests = [

"Mathematics",

"Algorithm",

"Computer Science",

"......"

];

me.relationship = NULL;

if (you.want_to_date_with(me)) {

if (you.sex == _GIRL) {

me.accept(you);

} else if (you.sex == _BOY) {

me.refuse(you);

} else {

me.kill(you);

}

}

printf("Hello world!\n");

return 0;

}