program run_time_error;
var a,b:integer;
begin
a:=100;
b:=0;
writeln(a/b);
end.
{Division by zero}
