16 lines
209 B
C++
16 lines
209 B
C++
|
#include <iostream>
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
|
||
|
int main(){
|
||
|
int a = 10;
|
||
|
int b (11);
|
||
|
string stra("a=");
|
||
|
string strb("b=");
|
||
|
|
||
|
cout << stra << a << endl;
|
||
|
cout << strb << b << endl;
|
||
|
return 0;
|
||
|
}
|