diff --git a/simple_cpp/main.cpp b/simple_cpp/main.cpp index 7f295fe..f709e86 100644 --- a/simple_cpp/main.cpp +++ b/simple_cpp/main.cpp @@ -5,7 +5,7 @@ int main() { cin.tie(0); ios_base::sync_with_stdio(0); int a, b; cin >> a >> b; - cout << "Hello, Tsinghua SSSP!" << endl; + cout << "Hello, Tsinghua SSSP v1.0!" << endl; cout << "The sum of " << a << " and " << b << " is " << a + b << "." << endl; return 0; }