git-svn-id: trunk@4019 -
@@ -7178,7 +7178,6 @@ tests/webtbs/tw5015.pp svneol=native#text/plain
tests/webtbs/tw5023.pp svneol=native#text/plain
tests/webtbs/tw5036.pp svneol=native#text/plain
tests/webtbs/tw5082.pp -text svneol=unset#text/plain
-tests/webtbs/tw5086.in -text
tests/webtbs/tw5086.pp -text
tests/webtbs/tw5094.pp -text
tests/webtbs/tw6435.pp svneol=native#text/plain
@@ -1,2 +0,0 @@
-180 6
-37 78 59 100 64 128
@@ -20,7 +20,7 @@ var
procedure readInput;
begin
- assign(input,'tw5086.in');
+ assign(input,'tw5086.tmp');
reset(input);
readln(v, k);
readln(a1, a2, b1, b2, c1, c2);
@@ -203,7 +203,14 @@ begin
halt(1);
end;
+var
+ t : text;
+assign(t,'tw5086.tmp');
+rewrite(t);
+writeln(t,'180 6');
+writeln(t,'37 78 59 100 64 128');
+close(t);
readInput;
Solve;
end.