diff --git a/.history/task1_20220914161633.py b/.history/task1_20220914161633.py new file mode 100644 index 0000000..db8f472 --- /dev/null +++ b/.history/task1_20220914161633.py @@ -0,0 +1,3 @@ +a = 5 +b = 7 +print(a,b) \ No newline at end of file diff --git a/.history/task1_20220914161650.py b/.history/task1_20220914161650.py new file mode 100644 index 0000000..9766127 --- /dev/null +++ b/.history/task1_20220914161650.py @@ -0,0 +1,3 @@ +a = 5 +b = 7 +print(a b) \ No newline at end of file diff --git a/.history/task1_20220914161705.py b/.history/task1_20220914161705.py new file mode 100644 index 0000000..e3ed9c9 --- /dev/null +++ b/.history/task1_20220914161705.py @@ -0,0 +1,3 @@ +a = 5 +b = 7 +print(a+b) \ No newline at end of file diff --git a/.history/task1_20220914161906.py b/.history/task1_20220914161906.py new file mode 100644 index 0000000..923ee5f --- /dev/null +++ b/.history/task1_20220914161906.py @@ -0,0 +1,3 @@ +a = 5 +b = 7 +print(a+'+'+b+'='+a+b) \ No newline at end of file diff --git a/.history/task1_20220914161923.py b/.history/task1_20220914161923.py new file mode 100644 index 0000000..e53c098 --- /dev/null +++ b/.history/task1_20220914161923.py @@ -0,0 +1,3 @@ +a = 5 +b = 7 +print(a,'+',b,'=',a+b) \ No newline at end of file diff --git a/.history/task1_20220914162258.py b/.history/task1_20220914162258.py new file mode 100644 index 0000000..678ea85 --- /dev/null +++ b/.history/task1_20220914162258.py @@ -0,0 +1,3 @@ +n = int(input()) +k = int(input()) +print(k/n) \ No newline at end of file diff --git a/.history/task1_20220914162645.py b/.history/task1_20220914162645.py new file mode 100644 index 0000000..b1bc493 --- /dev/null +++ b/.history/task1_20220914162645.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.py b/task1.py index 37eb3e0..b1bc493 100644 --- a/task1.py +++ b/task1.py @@ -1 +1,3 @@ -print('Hi!') \ No newline at end of file +n = int(input()) +k = int(input()) +print(int(k/n)) \ No newline at end of file