mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-09 17:18:49 +00:00
Submitting Solutions
This commit is contained in:
parent
38fd50cc64
commit
1a72738cb6
20
USACO-Training/1.2/1/1.cpp
Normal file
20
USACO-Training/1.2/1/1.cpp
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
/*
|
||||||
|
ID: baoshuo1
|
||||||
|
TASK: test
|
||||||
|
LANG: C++
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using std::cin;
|
||||||
|
using std::cout;
|
||||||
|
using std::endl;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
freopen("test.in", "r", stdin);
|
||||||
|
freopen("test.out", "w", stdout);
|
||||||
|
int a, b;
|
||||||
|
cin >> a >> b;
|
||||||
|
cout << a + b << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user