MATLAB: How to display the sum of the digits of a number entered by a user

a common homework problem

I am new to MATLAB, and I want to know how can I display the sum of the digits of a number entered by a user, I started the program but I got stuck.
x=input('Please enter a number: '); %asks the user to enter a number
n= strlength(abs(x) + "") %count the number of digits in that number
y=fprintf('The number of digits of %d is %d \n',x,n);
I would appreciate it if anyone could help. Thank you in advance.

Best Answer

n=length(num2str(x));%number of digits
s=sum(num2str(x)-'0');%sum of digits