/*
* Author: Arpit Bhayani
* https://arpitbhayani.me
*/
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <climits>
#include <deque>
#include <iostream>
#include <list>
#include <limits>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <vector>
#define ll long long
#define MIN(a, b) a < b ? a : b
#define MAX(a, b) a > b ? a : b
using namespace std;
int main() {
// Declare a variable named 'input_string' to hold our input.
string input_string;
// Read a full line of input from stdin (cin) and save it to our variable, input_string.
getline(cin, input_string);
// Print a string literal saying "Hello, World." to stdout using cout.
cout << "Hello, World." << endl;
// TODO: Write a line of code here that prints the contents of input_string to stdout.
cout << input_string << endl;
return 0;
}
System Design for Beginners
A masterclass that helps early engineers and product managers become great at designing scalable systems.
132+ learners
Details →System Design Masterclass
A masterclass that helps you become great at designing scalable, fault-tolerant, and highly available systems.
1000+ learners
Details →Redis Internals
Learn internals of Redis by re-implementing some of the core features in Golang.
98+ learners
Details →