lab.cpp/ex2.cpp

16 lines
209 B
C++
Raw Normal View History

2016-03-03 18:30:01 +00:00
#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;
}