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
2 changed files with 11 additions and 1 deletions

View File

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

View File

@ -0,0 +1,10 @@
#include <stdlib.h>
int main() {
int a = 1;
int b = 2;
int c = a - b;
return 0;
}