<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Таблицы</title>
<style type="text/css">
TABLE {
border: 7px solid #FF0000;
}
TD, TH {
border: 3px double #FF0000;
</style>
</head>
<body>
<table border="1" cellpadding="4" cellspacing="0" >
<tr>
<td rowspan="2" align="center">Большая ячейка А</td>
<th align="center">Маленькая ячейка 1</th><th align="center">Маленькая ячейка 2</th>
</tr>
<th colspan="2" align="center">Большая ячейка B</th>
</table>
</body>
</html>
Объяснение:
/** libraries */
#include <iostream>
#include <cmath>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <algorithm>
using namespace std;
/** defines */
#define ll long long
#define ld long double
#define yes cout << "YES" << "\n"
#define no cout << "NO" << "\n"
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
srand(time(NULL));
vector<ll> a(4);
for(ll i = 0; i < 4; i++)
cin >> a[i];
sort(a.begin(),a.end());
cout << *a.begin() + 10;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Таблицы</title>
<style type="text/css">
TABLE {
border: 7px solid #FF0000;
}
TD, TH {
border: 3px double #FF0000;
}
</style>
</head>
<body>
<table border="1" cellpadding="4" cellspacing="0" >
<tr>
<td rowspan="2" align="center">Большая ячейка А</td>
<th align="center">Маленькая ячейка 1</th><th align="center">Маленькая ячейка 2</th>
</tr>
<tr>
<th colspan="2" align="center">Большая ячейка B</th>
</tr>
</table>
</body>
</html>
Объяснение:
/** libraries */
#include <iostream>
#include <cmath>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <algorithm>
/** libraries */
using namespace std;
/** defines */
#define ll long long
#define ld long double
#define yes cout << "YES" << "\n"
#define no cout << "NO" << "\n"
/** defines */
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
srand(time(NULL));
vector<ll> a(4);
for(ll i = 0; i < 4; i++)
cin >> a[i];
sort(a.begin(),a.end());
cout << *a.begin() + 10;
}