Let's Count to 5(555)! (and a Lulu because why not)
Hopping on the meme train because I am unoriginal. Below is 5,555 Annie's.




















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































Made using Java because why not. Below is the code if you want to modify it and be unoriginal as well :D . Can you spot the lulu? If so, be sure to post her exact row and column number ;) ...
> package lkj;
>
> import java.io.File;
> import java.io.FileNotFoundException;
> import java.io.PrintWriter;
>
> public class D
> {
> public static void main(String[] args)
> {
> PrintWriter pw = null;
> File file = new File("src/annie.txt");
>
> try{
> pw = new PrintWriter(file);
> }
> catch(FileNotFoundException e){
> e.printStackTrace();
> }
>
> for(int i = 1; i <= 5555; i++){
> System.out.print("
");
> pw.print("
");
> }
> pw.close();
> }
> }