1 solutions

  • 0
    @ 2025-11-5 19:20:07

    C++ :

    #include<iostream>
    #include<string>
    using namespace std;
    int main()
    {
      string str;
      getline(cin,str);
      cout<<str<<endl;
      return 0;
    }
    

    Pascal :

    var s:string;
        n,i:integer;
    begin
      readln(s);
      writeln(s);
    end.
    
    • 1

    Information

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