i have code like this
#include
#include <stdio.h>
using namespace std;
int i,n,x,y;
int j[]={};
int main() {
cin>>n;

for(i = 0; i<n;i++){
	cin>>x>>y;
	cout<<x*y<<endl;
	}
}

this program only multiplies input I have run it in the codeblock but why is it still dated incorrectly in spoj

  • created

    Mar '19
  • last reply

    Mar '19
  • 1

    reply

  • 622

    views

  • 2

    users

Which problem is this for?

It’s hard to know, but an easy answer could be overflow.