I am submitting this code in c++4.3.2, but it do not scan the second string, what's the problem?

Revision en2, by starun8795, 2017-07-12 12:38:49
#include<iostream>
#include<cstdio>
using namespace std;

int main()
{
	int n,m;
	scanf("%d%d", &n, &m);
	const int max=1005;
	char t1[max], t2[max];
	gets(t1);
	gets(t2);
	printf("%s\n%s", t1, t2);
	return 0;
}

Or you can also see the code link on ideone

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English starun8795 2017-07-12 12:38:49 18 Tiny change: '\n~~~~~\n#in' -> '~~~~~\n#in'
en1 English starun8795 2017-07-12 12:37:11 397 Initial revision (published)