diff --git a/lab1.cbp b/lab1.cbp
index be1f46d..0b5eff7 100644
--- a/lab1.cbp
+++ b/lab1.cbp
@@ -32,11 +32,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
diff --git a/main.cpp b/main.cpp
index efe800b..c72f2cf 100644
--- a/main.cpp
+++ b/main.cpp
@@ -10,7 +10,7 @@ struct Input {
};
Input
-input_data(){
+input_data(istream& in){
size_t number_count;
cerr << "Enter number_count: ";
@@ -32,7 +32,7 @@ input_data(){
int
main()
{
- auto in = input_data();
+ auto in = input_data(cin);
auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_svg(bins);
return 0;
diff --git a/unittest.cbp b/unittest.cbp
index 7f9621b..534f497 100644
--- a/unittest.cbp
+++ b/unittest.cbp
@@ -31,6 +31,9 @@
+
+
+