Compare commits

..

2 Commits

Author SHA1 Message Date
cecf73c217 a lot of changes 2025-01-24 01:14:18 +03:00
55baf08975 sum in main.cpp 2025-01-24 00:21:35 +03:00
3 changed files with 6 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.cast

View File

@ -1 +1 @@
Репозиторий для сдачи дз по ОС

View File

@ -1,10 +1,13 @@
#include <stdlib.h>
#include <iostream>
using namespace std;
# Это мейн
int main() {
int a = 1;
int b = 2;
int c = a - b;
int c = a + b;
return 0;
}