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

RGB7102 - Хоёр тооны бага

Өгөгдсөн 2 тооны багыг ол.

Input

Нэг мөрөнд Int төрлийн 2 тоо зайгаар тусгаарлагдан өгөгдөнө.

Output

Бага тоо.

Example

Input:
9 6

Output:
6

Нэмсэн: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
2019-03-26 05:20:31
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,min;
cout<<a<<b;
if(a<b) min=a;
else
if(b<a) min=b;
cout<<min<<endl;
system("pause");
return 0;
}
2019-01-31 12:55:53
#include<stdio.h>
int main()
{
int a,b,max;
scanf("%d %d",&a,&b);
if(a<b)max=a;
else max=b;
printf("%d",max);
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.