-
Notifications
You must be signed in to change notification settings - Fork 8
/
122B.cpp
65 lines (53 loc) · 1.58 KB
/
122B.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
~ Author : @tridib_2003
*/
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned long long
#define PI 3.1415926535897932384626
#define MOD 1000000007
#define vi vector<int>
#define pb push_back
#define mp(a, b) make_pair(a, b)
#define pii pair<int, int>
#define mk(arr, n, type) type *arr = new type[n];
#define FOR(i, a, b) for (int(i) = (a); (i) < (b); ++(i))
#define RFOR(i, a, b) for (int(i) = (a)-1; (i) >= (b); --(i))
#define w(x) int x; cin >> x; while(x--)
#define all(c) (c).begin(), (c).end()
#define sz(c) (int)(c).size()
#define pqmx priority_queue<int>
#define pqmn priority_queue<int, vector<int>, greater<int> >
#define mx_all(c) *max_element((c).begin(), (c).end())
#define mn_all(c) *min_element((c).begin(), (c).end())
#define FIO ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
void solve() {
string str;
cin >> str;
int n = str.length();
int fourCount = 0, sevenCount = 0;
FOR (i, 0, n) {
if (str[i] == '4')
++fourCount;
else if (str[i] == '7')
++sevenCount;
}
if (!fourCount && !sevenCount)
cout << -1;
else if (fourCount > sevenCount)
cout << 4;
else if (fourCount < sevenCount)
cout << 7;
else
cout << 4;
}
int main() {
FIO;
int t = 1;
// cin >> t;
while (t--) {
solve();
}
return 0;
}