c_code/hello world.cpp

11 lines
130 B
C++
Raw Normal View History

2024-07-15 17:35:42 +08:00
#include<iostream>
using namespace std;
int main() {
2024-07-16 18:19:51 +08:00
int a,b,c;
cin>>a;
cin>>b;
cout<<(a+b)*2<<endl;
cout<<a*b;
2024-07-15 17:35:42 +08:00
return 0;
}