sum in main.cpp

This commit is contained in:
Grigory Podkhvatilin 2025-01-24 00:21:35 +03:00
parent 3178aa58b1
commit 55baf08975
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View File

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

View File

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