c2
This commit is contained in:
parent
0d75f30a49
commit
4744ebb565
69 changed files with 7 additions and 5 deletions
15
1sem/adaptation courses/01/1.cpp
Normal file
15
1sem/adaptation courses/01/1.cpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// ac_1_1.cpp
|
||||
// Горбацевич Андрей
|
||||
#include <iostream>
|
||||
#include <cstdio>
|
||||
#include <clocale>
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
setlocale(LC_ALL, "russian");
|
||||
string n, d;
|
||||
cin >> n >> d;
|
||||
cout << "Привет, " << d << " " << n << "!";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue