update .gitignore
This commit is contained in:
parent
4d6fe72596
commit
3e54fd98ef
|
@ -0,0 +1,2 @@
|
||||||
|
**/*.exe
|
||||||
|
**/gmon.out
|
|
@ -0,0 +1,12 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
int a, b;
|
||||||
|
cin >> a >> b;
|
||||||
|
|
||||||
|
cout<< a + b << endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue