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
2 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View File

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

View File

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