summaryrefslogtreecommitdiffstats
path: root/problems/hellow/tester.cpp
blob: f20ffdcd1ccf877bb951ce15f132b7209f474d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>

using namespace std;

int main(int argc, char* argv[])
{
	ifstream fin (argv[1]);
	int z, y;
	fin >> z;
	cin >> y;
	if(z == y)
	{
//		cerr << "Correct!" << endl;
		cerr << 100 << endl;
		return 0;
	}
//	cerr << "Wrong!" << endl;
	cerr << 0 << endl;
	return 0;
}