unsigned long long rpow(int n, int p) {
return p ? p==1 ? n : n * rpow(n,p-1) : 1;
}
int main(int argc, char **argv) {
if(argv[1])
if(argv[2]) {
int n = atoi(argv[1]);
int p = atoi(argv[2]);
printf("%llu\n",rpow(n,p));
}
return 0;
}
Name:
Anonymous2009-03-11 16:09
>>105
But it isn't intelligent, it is a slave that can go "is that a line?" "better not cross it cause my master says i shouldn't" or "is that a robot?" "i think i'm supposed to push that fucker backwards"
Calling that an AI is an insult to the work of all the AI researchers who have wasted their lives and government money on they're laudablelaughable goal