Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7115 - Тэнцсэн, унасан

Тоон дүн 3-аас их бол тэнцсэнд тооцно. Бусад тохиолдолд унана. Өгөгдсөн тоон дүн тэнцсэн эсэхийг тогтоо.

Input

Тоон дүн зөвхөн 2,3,4,5 гэсэн тоонуудын аль нэгээр өгөгдөнө.

Output

Тэнцсэн тохиолдолд "Tentssen", эсрэг тохиолдолд "Unasan" гэж хэвлэ.

Example

Input:
4
Output:
Tentssen

Нэмсэн:Bataa
Огноо:2011-06-20
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2024-04-08 04:17:09
⠀⠀⠀⠀⠀⠀⠀⠀⠀
2024-03-22 02:42:34
hahhahahaha
2024-03-21 03:32:45
8-1 irmuun maugli huurhn shu hrte shy
gj hutsqyu

Last edit: 2024-03-21 03:33:28
2024-03-05 03:33:27
hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh

Last edit: 2024-03-05 03:33:55
2024-02-29 02:39:58
#include <iostream>
#include <sstream>
#include <string>
#include <cstdlib>
#include <cmath>

using namespace std;

// Headers
string toString (double);
int toInt (string);
double toDouble (string);

int main() {
int a;

cin >> a;
if (a > 3) {
cout << "Tentssen" << endl;
} else {
cout << "Unasan" << endl;
}
return 0;
}

// The following implements type conversion functions.
string toString (double value) { //int also
stringstream temp;
temp << value;
return temp.str();
}

int toInt (string text) {
return atoi(text.c_str());
}

double toDouble (string text) {
return atof(text.c_str());
}
2024-02-29 02:39:57
#include <iostream>
#include <sstream>
#include <string>
#include <cstdlib>
#include <cmath>

using namespace std;

// Headers
string toString (double);
int toInt (string);
double toDouble (string);

int main() {
int a;

cin >> a;
if (a > 3) {
cout << "Tentssen" << endl;
} else {
cout << "Unasan" << endl;
}
return 0;
}

// The following implements type conversion functions.
string toString (double value) { //int also
stringstream temp;
temp << value;
return temp.str();
}

int toInt (string text) {
return atoi(text.c_str());
}

double toDouble (string text) {
return atof(text.c_str());
}
2024-02-23 14:22:57
#include <iostream>
using namespace std;

int main() {

int n;
cin>>n;
if(n>3){
cout<<"Tentssen";
}else{
cout<<"Unasan";
}
}
2024-02-20 07:57:15
icheldee!!
2024-01-25 05:44:19
uillo

2024-01-09 04:42:55
#include <bits/stdc++.h>
int a,b,c,d,m,i;
using namespace std;

int main() {
scanf("%d",&a); // cin>>a>>b>>c;
i=0;
if (a>3) printf("Tentssen");
else cout<<"Unasan"<<endl;
//if (b%2==0) printf("YES\n");
// else cout<<"NO"<<endl;
//if (c%2==0) printf("YES\n");
// else cout<<"NO"<<endl;
//printf("%d",i);
return 0;
}
//Input:
//4
//Output:
//Tentssen
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.