%A seed to make sure that each time the program is executed the file matrix is the same
%all the time.
rng(5);

%Creates a 1000 by 1000 matrix with integers ranging from 1 to 25
A = randi(25, 1000, 1000);
B = randi(25, 1000, 1000);

%Multiply to matrices
C = A*B;

%Print Result
C
