#C01L01P08. C01.L01.程序的基本结构、cout语句.例题4.输出字符串

C01.L01.程序的基本结构、cout语句.例题4.输出字符串

题目描述

输出字符串 good boy

输入格式

输出格式

输出一串字符。

样例


good boy

完成程序

#include<iostream>
using namespace std;
int main()
{
	cout<<填空(1)good boy填空(2) ; 
	return 0;
}

填空(1):{{ input(1) }}

填空(2):{{ input(2) }}