在编程中学了算法,今天就分享一个加法吧#include <iostream> #include <cstdio> using namespace std; int main() { int a, b; cin >> a >> b; cout << (a + b); return 0; }