diff --git a/main.cpp b/main.cpp
index 690fe11..e9f4b54 100644
--- a/main.cpp
+++ b/main.cpp
@@ -87,23 +87,6 @@ int main()
         }
     }
 
-
-    for (int row = 0; row < max_count; row++) {
-        for (int i = 0; i < bin_count; i++) {
-            if (bins[i] >= row + 1) {
-                cout << "*";
-            }
-            else {
-                cout << " ";
-            }
-        }
-        cout << endl;
-    }
-    return 0;
-
-
-
-    /*
     if (max_count <= 76)
     {
         for (size_t i = 0; i < bin_count; i++)
@@ -133,5 +116,5 @@ int main()
         }
     }
     return 0;
-    */
+
 }