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.|

RGB7101 - Хоёр тооны их

Өгөгдсөн 2 бүхэл тооны ихийг ол.

Input

2 бүхэл тоо нэг мөрөнд зайгаар тусгаарлагдан өгөгдөнө. Int төрөл

Output

Их тоо

Example

Input:
16 14

Output:
16


Нэмсэн:Bataa
Огноо:2011-05-23
Хугацааны хязгаарлалт: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-12-05 04:32:17
mal namunaa
2024-12-03 02:52:39
#include<stdio.h>
int main(){
int a,b;
scanf("%d%d",&a,&b);
if(a>b) printf("%d",a);
else printf("%d",b);
return 0;
}
2024-11-22 04:29:39
#include<bits/stdc++.h>
using namespace std;
int main (){
int a,b,ih;
cin>>a>>b;
ih = a;
if(b>ih) ih=b;
cout<<ih;
}
2024-11-11 12:18:34
:>
#include <iostream>
using namespace std;
int main() {
int a;
int b;
cin >> a;
cin >> b;
if (a > b) {
cout << a << endl;
} else {
cout << b << endl;
}
return 0;
}
2024-10-14 13:27:11
#include <iostream>
using namespace std;
int main() {
int a;
int b;

cin >> a;
cin >> b;
if (a > b) {
cout << a << endl;
} else {
cout << b << endl;
}
return 0;
}
mai
2024-10-07 07:45:04
#include <iostream>

using namespace std;

int main() {

int x, y;

cin >>x>>y;
if (x>y){
cout <<x<< endl;
} else {
cout <<y<< endl;
}
return 0;
} #include <iostream>

using namespace std;

int main() {

int x, y;

cin >>x>>y;
if (x>y){
cout <<x<< endl;
} else {
cout <<y<< endl;
}
return 0;
}
2024-06-21 05:18:49
go home, the site is dead
2024-04-17 09:54:17
#include <iostream>
using namespace std;
int main() {
int a;
int b;

cin >> a;
cin >> b;
if (a > b) {
cout << a << endl;
} else {
cout << b << endl;
}
return 0;
}
2024-03-02 09:32:19
MAI SDAKUUD
#include <iostream>
using namespace std;
int main() {
int a;
int b;

cin >> a;
cin >> b;
if (a > b) {
cout << a << endl;
} else {
cout << b << endl;
}
return 0;
}
2024-03-01 01:57:34
alyshh alnudm



© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.