init: repo
This commit is contained in:
17
open_set/26_op_priority4.pas
Normal file
17
open_set/26_op_priority4.pas
Normal file
@@ -0,0 +1,17 @@
|
||||
program main;
|
||||
var a,b,c,d,e: integer;
|
||||
flag:boolean;
|
||||
begin
|
||||
read(a);
|
||||
read(b);
|
||||
read(c);
|
||||
read(d);
|
||||
read(e);
|
||||
flag := false;
|
||||
if ((a - b * c <> d - a / c) or (a * b / c = e + d) or (a + b + c = d + e)) then
|
||||
begin
|
||||
flag := true;
|
||||
end;
|
||||
if flag then
|
||||
write(1);
|
||||
end.
|
||||
Reference in New Issue
Block a user