JOJ3/examples/success/a.cc
张泊明518370910136 0c1ed2a3c2
All checks were successful
continuous-integration/drone/push Build is passing
chore: move /_example to /examples
2024-03-08 18:48:13 -05:00

7 lines
99 B
C++

#include <iostream>
int main() {
int a, b;
std::cin >> a >> b;
std::cout << a + b << '\n';
}