{% extends "oj_base.html" %} {% block css_block %} {% endblock %} {% block body %}

500 - Server Error


// C
#include <stdio.h>
int main()
{
    printf("500 - Server Error");
    return 0;
}
// C++
#include <iostream>
int main()
{
    std::cout << "500 - Server Error" << std::endl;
    return 0;
}
// Java
public class Main
{
    public static void main(String[] args)
    {
        System.out.println("500 - Server Error");
    }
}
// JavaScript
console.log("500 - Server Error")
// Python
print "500 - Server Error"
{% endblock %}