Nathan Coulas

The April Fools Warmup Problem

acc4p0 CPP03 13 Feb, 2020 0.018s 1 points

Source Code

#include <iostream>
#include <string>
using namespace std;

string f(){

	return "All Kill";

}

int main(){

	cout << f() << endl;
	return 0;
}