You can ask and answer questions related to USACO or competitive programming here. Feel free to ask for help if you’re unable to solve a problem.
Please refer to this post to learn more about how to effectively ask for help on a problem.
Additionally, feel free to post bug reports and suggestions for how we can improve the USACO Guide.
Note that this forum is not affiliated with the official USACO organization.
This forum is moderated; however, DM’s are not. Please note that admins can still view DM messages sent through Discourse, so do not send any personal information!
// Source: https://usaco.guide/general/io
#include <iostream>
using namespace std;
int main() {
int a, b, c; cin >> a >> b >> c;
cout << "sum is " << a+b+c << "\n";
}