new file: tasck11.py

new file:   tasck12.py
	new file:   task1.py
	new file:   task10.py
	new file:   task13.py
	new file:   task14.py
	new file:   task15.py
	new file:   task16.py
	new file:   task2.py
	new file:   task3.py
	new file:   task4.py
	new file:   task5.py
	new file:   task7.py
	new file:   task8.py
	new file:   task9.py
master
joker 3 years ago
parent c6ee349146
commit 5548bc4e22
  1. 1
      tasck11.py
  2. 1
      tasck12.py
  3. 2
      task1.py
  4. 3
      task10.py
  5. 1
      task13.py
  6. 3
      task14.py
  7. 7
      task15.py
  8. 3
      task16.py
  9. 1
      task2.py
  10. 1
      task3.py
  11. 1
      task4.py
  12. 1
      task5.py
  13. 1
      task7.py
  14. 1
      task8.py
  15. 11
      task9.py

@ -0,0 +1 @@
print('Python'*1234)

@ -0,0 +1 @@
print(int(('1'*123))**2)

@ -0,0 +1,2 @@
import this

@ -0,0 +1,3 @@
a = 3
a = a * 5 + a ** 2
print(a)

@ -0,0 +1 @@
print(int(str(15**10)*10)**2)

@ -0,0 +1,3 @@
a = int(input())
b = int(input())
print(a+b)

@ -0,0 +1,7 @@
a = int(input())
b = int(input())
a += b
b = a-b
a -= b
print(a)
print(b)

@ -0,0 +1,3 @@
a = int(input())
print("The next number for the number", int(a),"is",str(a+1)+'.')
print("The previous number for the number",a,"is",str(a-1)+".")

@ -0,0 +1 @@
print(2**1234)

@ -0,0 +1 @@
print(1*2*3*4*5*6*7*8*9*10*11*12*13*14*15*16*17*18*19*20)

@ -0,0 +1 @@
print(2**2**3)

@ -0,0 +1 @@
print(2*5**(2*2-2)-((-2)**2**2-2**2**3)+10)

@ -0,0 +1 @@
print(1+0+2+3+4+5+6+7+8+9+8+7+6+5+4+3+2+0+1)

@ -0,0 +1 @@
print(3**10)

@ -0,0 +1,11 @@
a = 10
b = 20
c = a
a = b
b = c
a,b = b,a
print(a,b)
Loading…
Cancel
Save