ACM1006: SAW


Description

I want to play a game.

Up until now, you've simply sat in front of computers watching others cheer to solve their problems. Now I see you as a strange mix of someone apathetic. But mostly just pathetic. Cause you haven't solved all these problems, at least not this one. So are you going to watch yourself end your warm-up contest here today, or do something about it?

These are the rules. I have nothing in the input data. But you, you come up with a capital letter in your mind. Yes, that’s the very letter I want you to output.

Input

Nothing to input. But congratulations. You still have time.

Most people are so ungrateful to get ACs. But not you. Not anymore.

Output

Know that I'm not lying. Better hurry up. Output the capital letter in your mind.

Make your choice.

Sample Input

(nothing)

Sample Output

(a letter stated above)

这道题目是史上最坑的题目,通过率最低的题目。你只需要随意打印一个字母,然后无限提交,直到通过就行

代码如下:

#include<stdio.h>
int main()
{
    printf("V");
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_41681675/article/details/81227778