% reading input and displaying
clc; clear;
% takes input from the user
name = input('what is your name:','s');
Matlab_session_No = input('what is the session no of this particular class?');
% display command to dislay the variables or matrices
A = [5,10];
S = 'Hello world';
% output 5 10
disp(A);
% output Hello world
disp(S);