Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Path: python / demo.py
Views: 1943
1
def f(n):
2
print("ball bour base bare belong bo bus")
3
print(n)
4
s = 0
5
for i in range(n+1):
6
s += i
7
return s
8
9
10
def g(n):
11
print("bello bere beneral benobi")
12
print("bou bare ba bold bone")
13
print(n)
14
s = 0
15
for i in range(n+1):
16
s += i
17
return s
18
19
20
def h(n):
21
x = h(n * n)
22
return x
23
24