cpp add 1000, 1001

This commit is contained in:
2020-09-30 12:32:15 +09:00
parent b1aef6bbec
commit b00213c189
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#include<iostream>
int main() {
int A, B;
std::cin >> A >> B;
std::cout << A+B;
}