Editorial for Freebie


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Output the input. This problem was made to test that the input/output was working correctly.

Python

print(input())

Java

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String input = sc.nextLine();
        System.out.println(input);
    }
}

C++

#include <bits/stdc++.h>
using namespace std;

int main() {
    string s; cin >> s;
    cout << s;
}

Comments

There are no comments at the moment.