From e447fb8ac7d675c912ad7285f0c923f37a00dbd7 Mon Sep 17 00:00:00 2001 From: "Krasnikov.pro" Date: Wed, 14 Sep 2022 15:59:39 +0300 Subject: [PATCH] new file: task1.py --- .history/README_20220914154201.md | 0 .history/README_20220914154440.md | 3 +++ .history/README_20220914155922.md | 3 +++ .history/task1_20220914155645.py | 0 .history/task1_20220914155847.py | 1 + Task1/.history/tack1_20220914095033.py | 0 Task1/.history/tack1_20220914100333.py | 3 +++ Task1/.history/tack1_20220914100342.py | 3 +++ Task1/.history/tack1_20220914100425.py | 3 +++ Task1/.history/tack1_20220914100845.py | 4 ++++ Task1/.history/tack1_20220914101603.py | 4 ++++ Task1/.history/tack5_20220914100718.py | 0 Task1/.history/tack5_20220914101530.py | 4 ++++ Task1/.history/tack5_20220914101631.py | 3 +++ Task1/.history/tack5_20220914101823.py | 3 +++ Task1/tack1.py | 4 ++++ Task1/tack5.py | 3 +++ Task1/tack6.py | 0 task1.py | 1 + 19 files changed, 42 insertions(+) create mode 100644 .history/README_20220914154201.md create mode 100644 .history/README_20220914154440.md create mode 100644 .history/README_20220914155922.md create mode 100644 .history/task1_20220914155645.py create mode 100644 .history/task1_20220914155847.py create mode 100644 Task1/.history/tack1_20220914095033.py create mode 100644 Task1/.history/tack1_20220914100333.py create mode 100644 Task1/.history/tack1_20220914100342.py create mode 100644 Task1/.history/tack1_20220914100425.py create mode 100644 Task1/.history/tack1_20220914100845.py create mode 100644 Task1/.history/tack1_20220914101603.py create mode 100644 Task1/.history/tack5_20220914100718.py create mode 100644 Task1/.history/tack5_20220914101530.py create mode 100644 Task1/.history/tack5_20220914101631.py create mode 100644 Task1/.history/tack5_20220914101823.py create mode 100644 Task1/tack1.py create mode 100644 Task1/tack5.py create mode 100644 Task1/tack6.py create mode 100644 task1.py diff --git a/.history/README_20220914154201.md b/.history/README_20220914154201.md new file mode 100644 index 0000000..e69de29 diff --git a/.history/README_20220914154440.md b/.history/README_20220914154440.md new file mode 100644 index 0000000..4e1beb0 --- /dev/null +++ b/.history/README_20220914154440.md @@ -0,0 +1,3 @@ +Введение в Python. +Задачи по программированию. + :) \ No newline at end of file diff --git a/.history/README_20220914155922.md b/.history/README_20220914155922.md new file mode 100644 index 0000000..6b31955 --- /dev/null +++ b/.history/README_20220914155922.md @@ -0,0 +1,3 @@ +Введение в Python. +Задачи по программированию. + :) task1.py \ No newline at end of file diff --git a/.history/task1_20220914155645.py b/.history/task1_20220914155645.py new file mode 100644 index 0000000..e69de29 diff --git a/.history/task1_20220914155847.py b/.history/task1_20220914155847.py new file mode 100644 index 0000000..37eb3e0 --- /dev/null +++ b/.history/task1_20220914155847.py @@ -0,0 +1 @@ +print('Hi!') \ No newline at end of file diff --git a/Task1/.history/tack1_20220914095033.py b/Task1/.history/tack1_20220914095033.py new file mode 100644 index 0000000..e69de29 diff --git a/Task1/.history/tack1_20220914100333.py b/Task1/.history/tack1_20220914100333.py new file mode 100644 index 0000000..678ea85 --- /dev/null +++ b/Task1/.history/tack1_20220914100333.py @@ -0,0 +1,3 @@ +n = int(input()) +k = int(input()) +print(k/n) \ No newline at end of file diff --git a/Task1/.history/tack1_20220914100342.py b/Task1/.history/tack1_20220914100342.py new file mode 100644 index 0000000..b1bc493 --- /dev/null +++ b/Task1/.history/tack1_20220914100342.py @@ -0,0 +1,3 @@ +n = int(input()) +k = int(input()) +print(int(k/n)) \ No newline at end of file diff --git a/Task1/.history/tack1_20220914100425.py b/Task1/.history/tack1_20220914100425.py new file mode 100644 index 0000000..b1bc493 --- /dev/null +++ b/Task1/.history/tack1_20220914100425.py @@ -0,0 +1,3 @@ +n = int(input()) +k = int(input()) +print(int(k/n)) \ No newline at end of file diff --git a/Task1/.history/tack1_20220914100845.py b/Task1/.history/tack1_20220914100845.py new file mode 100644 index 0000000..5a6437a --- /dev/null +++ b/Task1/.history/tack1_20220914100845.py @@ -0,0 +1,4 @@ +# 14 / 3 = 4 +n = int(input()) +k = int(input()) +print(int(k/n)) \ No newline at end of file diff --git a/Task1/.history/tack1_20220914101603.py b/Task1/.history/tack1_20220914101603.py new file mode 100644 index 0000000..5a6437a --- /dev/null +++ b/Task1/.history/tack1_20220914101603.py @@ -0,0 +1,4 @@ +# 14 / 3 = 4 +n = int(input()) +k = int(input()) +print(int(k/n)) \ No newline at end of file diff --git a/Task1/.history/tack5_20220914100718.py b/Task1/.history/tack5_20220914100718.py new file mode 100644 index 0000000..e69de29 diff --git a/Task1/.history/tack5_20220914101530.py b/Task1/.history/tack5_20220914101530.py new file mode 100644 index 0000000..7e7dc8e --- /dev/null +++ b/Task1/.history/tack5_20220914101530.py @@ -0,0 +1,4 @@ +# 72 = 7 +n = int(input()) +k = int(input()) +print(int(k/n)) \ No newline at end of file diff --git a/Task1/.history/tack5_20220914101631.py b/Task1/.history/tack5_20220914101631.py new file mode 100644 index 0000000..4f834ca --- /dev/null +++ b/Task1/.history/tack5_20220914101631.py @@ -0,0 +1,3 @@ +# 72 = 7 +n = int(input()) +print(int(n/10)) \ No newline at end of file diff --git a/Task1/.history/tack5_20220914101823.py b/Task1/.history/tack5_20220914101823.py new file mode 100644 index 0000000..ad714e3 --- /dev/null +++ b/Task1/.history/tack5_20220914101823.py @@ -0,0 +1,3 @@ +# 72 = 7 +n = int(input()) +print(int((n/10)%10)) \ No newline at end of file diff --git a/Task1/tack1.py b/Task1/tack1.py new file mode 100644 index 0000000..5a6437a --- /dev/null +++ b/Task1/tack1.py @@ -0,0 +1,4 @@ +# 14 / 3 = 4 +n = int(input()) +k = int(input()) +print(int(k/n)) \ No newline at end of file diff --git a/Task1/tack5.py b/Task1/tack5.py new file mode 100644 index 0000000..ad714e3 --- /dev/null +++ b/Task1/tack5.py @@ -0,0 +1,3 @@ +# 72 = 7 +n = int(input()) +print(int((n/10)%10)) \ No newline at end of file diff --git a/Task1/tack6.py b/Task1/tack6.py new file mode 100644 index 0000000..e69de29 diff --git a/task1.py b/task1.py new file mode 100644 index 0000000..37eb3e0 --- /dev/null +++ b/task1.py @@ -0,0 +1 @@ +print('Hi!') \ No newline at end of file