Time Limit: 1000MS Memory Limit: 65536 K
Description
Today is Windy's birthday. What can I say?
Input
No input.
Output
Just one line.
思路:这个题是一个神题...过生日肯定是说生日快乐啦...但是看到很多人错所以决定还是把这个题的答案发上来吧...供大家参考
AC代码:
#include <stdio.h> int main(){ printf("Happy Birthday! "); return 0; }