AtCoderでのC++の基本 AtCoderの「Welcome to AtCoder」問題を解いてみます。 整数a,b,cと、文字列sが与えられます。a+b+cの計算結果と、文字列sを並べて表示しなさい。 AtCoder Welcome to AtCoder 次のプログラムは、C++での解答例です。 //Welcome to AtCoderの解答例 #include<bits/stdc++.h> using namespace std; int main () { int a, b, c; cin >> a >> b >> c; string s; cin >> s; cout << (a + b + c) << " " << s << endl; return 0; }