Skip to content

Instantly share code, notes, and snippets.

@reo91004
Created August 31, 2022 11:50
#include <iostream>
void init() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
}
int main() {
init();
int A, B;
std::cin >> A >> B;
std::cout << A + B;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment