1 solutions

  • 0
    @ 2025-11-5 15:39:32

    C++ :

    #include<iostream>
    #include<cstring>
    using namespace std;
    int main()
    {
    	string c;
    	getline(cin,c);
    	cout<<"Hello!"<<c<<'.'<<endl;
    	return 0;
    }
    

    Pascal :

    var s:string;
    begin
      readln(s);
      writeln('Hello!',s,'.');
    end.
    
    • 1

    Information

    ID
    17011
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By