Language Contest
I have two numbers:
a. 138091830918309183190839018390182309183901890381290389103810239012839083091809381902830912839012830912839018230918290381092389103
b. 138091830918309183190839018390182309183901890381290389103810239012839083091809381902830912839012830912839018230918290381092389103
What is the result of their multiplication?
Well, finding the solution using javascript is easy:
<html>
<body>
<script language="javascript">
var o = 138091830918309183190839018390182309183901890381290389103810239012839083091809381902830912839012830912839018230918290381092389103;
var c = 138091830918309183190839018390182309183901890381290389103810239012839083091809381902830912839012830912839018230918290381092389103;
alert(c*o);
</script>
</body>
</html>
Try that with your language! :P