The Boat Filled With Love

You know a large part of our country is under water. The flood affected those areas immensely. Affec…

Click here to read the complete problem statement.


If you need help solving this problem, mention your approach and ask specific questions. Please avoid sharing your code and asking the Community to figure out “what’s wrong”.

#include <iostream>

int main()
{
	long N;
	
	std::cin >> N;
	
		std::cout << "We Love You."
		          << "We " << N 
				  <<" Are Here For You.";
	
	
}

How is this code a wrong answer?
Edit: I had included iostream in the original source code but it’s not showing up in the reply.

Edit: I have solved it with Java but I don’t see a reason why it’s wrong answer in C++

You are missing a space after the period.