21 lines
238 B
C++
21 lines
238 B
C++
|
#include<iostream>
|
|||
|
using namespace std;
|
|||
|
int main() {
|
|||
|
int n;
|
|||
|
cin >> n;
|
|||
|
if (n >= 90) {
|
|||
|
cout << "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|||
|
}
|
|||
|
else if (n >= 75) {
|
|||
|
cout << "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|||
|
}
|
|||
|
else if (n >= 60) {
|
|||
|
cout << "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|||
|
}
|
|||
|
else {
|
|||
|
cout << "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
return 0;
|
|||
|
}
|