CanonSharp/OpenSet/30_logi_assign.pas
jackfiled 89ce313b77 feat: CanonSharp Benchmark. (#4)
Reviewed-on: https://git.bupt-hpc.cn/jackfiled/CanonSharp/pulls/4
Co-authored-by: jackfiled <xcrenchangjun@outlook.com>
Co-committed-by: jackfiled <xcrenchangjun@outlook.com>
2024-08-19 14:37:34 +08:00

16 lines
174 B
ObjectPascal

program main;
var a, b, c: integer;
begin
read(a);
read(b);
if ((a = b) and (a <> 3)) then
begin
c := 1;
end
else
begin
c := 0;
end;
write(c);
end.