Longest code to reduce words

-4

Write a code in your favorite language which reduces words To first three characters.

Input  : One word  
Output : First three letters

For example

INPUT  : ProGramming
OUTPUT : Pro

INPUT  : puZZles
OUTPUT : puZ

INPUT  : BoWling
OUTPUT : BoW

Output needs to be case sensitive

Rule-1
All statements should be meaningful and useful.
For example
the C++ snippet below surely increases the score but is unnecessary.
The similar code snippets below is banned.

std::cout<<"abcabc";
std::cout<<"\b\b\b\b\b\b";  

Rule-2
Do not use infinite add-subtract or multiplication-division (or any other kind of) infinite progressions to increase the score.
For example
The similar code snippets below is banned.

if(strcmp(str,"monday")==0)  //The function strcmp() returns 0 if both
                             //strings are same (including NULL character)
cout<<110+1-1+1-1+1-1....inf //110 is ASCII value of 'm'  

Winner
Winner will be chosen on the basis of score (Most score wins) after 4 days from now.
If there is a tie then the one who submitted the answer first is the winner

Mukul Kumar

Posted 2014-04-03T17:07:09.303

Reputation: 2 585

Question was closed 2014-04-04T06:38:30.073

Also, ThRUsday -> ThRU: Are you stripping the last four characters there? – Geobits – 2014-04-03T17:40:19.063

@m.buettner thanks I fixed that anything else ? – Mukul Kumar – 2014-04-03T17:47:12.100

Whoa,..Whoa I am getting negative attacks, I would like to know why? BTW I have changed the question from day-names to words. – Mukul Kumar – 2014-04-03T17:55:30.917

1@MukulKumar One big reason for the big negative votes is that the question was very trivial in between a whole bunch of other low-quality questions. When people see enough low-quality questions, they automatically downvote other questions which could be improved. – Justin – 2014-04-03T20:01:05.890

Answers

2

Befunge 98, 6 bytes

~~~,,,

Any other statements would be meaningless and useless. I could possibly do this though (18 bytes):

3^,<
 @
 w~^
 0
 :

But everything but the , and the ~ are meaningless and useless because it could be done so much simpler.

Justin

Posted 2014-04-03T17:07:09.303

Reputation: 19 757

DUDE, This is Code-Bowling means you have to write longest code and not some Code-Trolling or Code-Golf – Mukul Kumar – 2014-04-03T17:46:06.767

1@MukulKumar This was the longest I could write :-) – Justin – 2014-04-03T17:46:38.957

I have changed the question again please read the question again – Mukul Kumar – 2014-04-03T17:56:34.910