Write a PASCAL program to compare two integers entered from the keyboard and output the larger one, the number should neither be a zero nor a negative. Solution Pascal Code: program Larger; var a: Integer; b: Integer; begin writeln(\'Enter First number\'); readln(a); writeln(\'Enter Second number\'); readln(b); if a<=0 then writeln(\'Negative number detected!\'); else if b<=0 then writeln(\'Negative number detected!\'); else if a>b then writeln(a); else writeln(b); end. .