init: repo

This commit is contained in:
2024-03-09 20:11:27 +08:00
commit 01cbcac8ef
79 changed files with 3898 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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.