//2ב//
using System;
double Yun (double mis){
return mis %10;
}
double Asa (double mis){
double ahadot = Yun(58);
double asarot = (mis - ahadot)/ 10 ;
return asarot;
double check= Yun (58);
double check2= Asa (58);
Console.Write( ((Yun (58)) , (Asa (58))));