Compare commits

..

2 Commits

Author SHA1 Message Date
0561afcfb4 update README 2025-01-24 01:01:17 +03:00
3b3400d2b5 add diff to main.cpp 2025-01-24 00:24:50 +03:00
3 changed files with 2 additions and 6 deletions

1
.gitignore vendored
View File

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

View File

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

View File

@ -1,13 +1,10 @@
#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;
}