游客 Signup | Login
中文 | En

3433 - 第二次练习1

请使用c语言输出以下文字


Input

Output

hello

my name is C.

Examples

Input

no input needed

Output

hello
my name is C.

Hint

只需要printf

Solution C

#include<stdio.h>
int
main(void)
{
  printf("hello\n");
  printf("my name is C.");
}

Solution C++

#include<cstdio>

int main()
{
	printf("hello\nmy name is C.");
	return 0;
}

Hint

只需要printf

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题