Competitive Programming Solutions

GitHub
back to dashboard

A. Say Hello With C++

Codeforces - Sheet #1 (Data type - Conditions) · limit: 1s · memory: 256MB · view on codeforces

input

programmer

output

Hello, programmer
Main.java
static void solve() {

        // Write your solution here
        String s = in.next();
        out.print("Hello, "+s);

    }