about summary refs log tree commit diff
path: root/9/TP-Huế-2014/bai1.pas
diff options
context:
space:
mode:
authorRaphael McSinyx <vn.mcsinyx@gmail.com>2016-11-06 11:13:14 +0700
committerRaphael McSinyx <vn.mcsinyx@gmail.com>2016-11-06 11:13:14 +0700
commit7de121c4b4ef888a0d1990c27144a7f9dd8c5f94 (patch)
tree2a298c9a957ad490cf8251ab264413f4effa9dce /9/TP-Huế-2014/bai1.pas
parente4767bb46d1d759f9c863704e3f347d2a0c8c49a (diff)
downloadcp-7de121c4b4ef888a0d1990c27144a7f9dd8c5f94.tar.gz
Thêm đề HSG 12 huyện Vĩnh Tường, Vĩnh Phúc
Diffstat (limited to '9/TP-Huế-2014/bai1.pas')
-rw-r--r--9/TP-Huế-2014/bai1.pas15
1 files changed, 0 insertions, 15 deletions
diff --git a/9/TP-Huế-2014/bai1.pas b/9/TP-Huế-2014/bai1.pas
deleted file mode 100644
index 7bd0d92..0000000
--- a/9/TP-Huế-2014/bai1.pas
+++ /dev/null
@@ -1,15 +0,0 @@
-var
-  n, m, p: qword;
-
-begin
-  read(n, m);
-
-  while m <> 0 do
-    begin
-      p := n mod m;
-      n := m;
-      m := p
-    end;
-
-  writeln(n <> 1)
-end.