#include<iostream>

int main()

{

  std::cout<<"Please Enter two number:"<<std::endl;

  int a,b;

  std::cin>>a>>b;

  std::cout<<"The sum of";

  std::cout<<a;

  std::cout<<"and";

  std::cout<<b;

  std::cout<<"is:";

  std::cout<<a+b;

  std::cout<<std:endl;

  return 0;

}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-25
  • 2021-11-26
  • 2021-11-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-28
  • 2021-10-01
  • 2022-02-20
  • 2021-06-18
  • 2021-11-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案