Compare commits

...

2 Commits

Author SHA1 Message Date
09d9a3ac41
add c=a+b
add d=a-b

add a=1 b=2

add comments
2025-01-23 19:19:13 +03:00
f0d9c69aac
edit README 2025-01-23 19:01:50 +03:00
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1 @@
my project

View File

@ -1,5 +1,9 @@
def main():
print("Hello world!")
# арифметика
a = 1
b = 2
c = a+b
d = a - b