游客 Signup | Login
中文 | En

2971 - 【验证型】第4章:键盘输入和屏幕输出 简单的输出1

输出 a=10%,b=19%

Input

Output

Examples

Input


                

Output


                

Solution C

#include<stdio.h>
main()
{
	int a=10,b=19;
	printf("a=%d%%,b=%d%%",a,b);
}

Solution C++

#include<iostream>
using namespace std;
int main()
{
  cout << "a=10%,b=19%";
  return 0;
}

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