# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1265225 | algoproclub | Ancient Machine 2 (JOI23_ancient2) | C++20 | 0 ms | 0 KiB |
// UUID: 83c539bd-f597-4e91-99d4-846fe934b629
// Source: https://usaco.guide/general/io
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c; cin >> a >> b >> c;
cout << "The sum of these three numbers is " << a + b + c << "\n";
}