update .gitignore

This commit is contained in:
flykhan 2023-03-22 23:13:22 +08:00
parent 4d6fe72596
commit 3e54fd98ef
2 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
**/*.exe
**/gmon.out

View File

@ -0,0 +1,12 @@
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout<< a + b << endl;
return 0;
}