Print Numbers

4.2

9 votes
Basic Programming, Basics of Implementation, Implementation
Problem

Print the numbers from 0 to 50 (inclusive).

Pretty easy right. But here is the twist, you cannot write a single digit in your code.

Have fun ...

Scoring:

If any digit is found in the code then straight forward Score is 0.

If the number of characters in code 50, then Score=100 

else Score=max(0,m), where m=(500number of characters in code)/5

Output

Print the numbers from 0 to 50 (inclusive).

Sample Output
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 
Time Limit: 1
Memory Limit: 256
Source Limit:
Editor Image

?