init: repo
This commit is contained in:
15
open_set/30_logi_assign.pas
Normal file
15
open_set/30_logi_assign.pas
Normal 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.
|
||||
Reference in New Issue
Block a user