1908: HTTP状态码
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
KiKi访问网站,得到HTTP状态码,但他不知道什么含义,BoBo老师告诉他常见HTTP状态码:200(OK,请求已成功),202(Accepted,服务器已接受请求,但尚未处理。)400(Bad Request,请求参数有误),403(Forbidden,被禁止),404(Not Found,请求失败),500(Internal Server Error,服务器内部错误),502(Bad Gateway,错误网关)。
Input
多组输入,一行,一个整数(100~600),表示HTTP状态码。
Output
针对每组输入的HTTP状态,输出该状态码对应的含义,具体对应如下: 200-OK 202-Accepted 400-Bad Request 403-Forbidden 404-Not Found 500-Internal Server Error 502-Bad Gateway
Sample Input Copy
200
Sample Output Copy
OK