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

RGB7103 - 3 тооны их

Өгөгдсөн 3 тооны ихийг ол.

Input

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

Output

Их тоо.

Example

Input:
1 3 2
Output:
3

Нэмсэн: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
2023-12-28 14:14:08
hudlaa hulaal
2023-12-17 17:49:02
bot
2023-12-17 17:48:23
#include <iostream>
using namespace std;

int main() {
int a,b;
cin >>a>>b;
if(a<b) cout<<a;
else cout<<b;
}
2023-12-07 05:40:51
#include<stdio.h>
main(){
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
if ( a > b & a > c ){;
printf("%d",a);
}

if ( b > a & b > c ){;
printf("%d",b);
}
if ( c > a & c > b ){;

printf("%d",c);
}
return 0;
}
bayrlaj yvarai
ermiin
2023-11-20 06:23:31
#include<bits/stdc++.h>
using namespace std;
int main(){
int a, b, c;
cin>>a>>b>>c;
if(a>b&&a>c){
cout<<a;
} if(b>a&&b>c){
cout<<b;
} if(c>a&&c>b){
cout<<c;
}
}
2023-08-28 09:32:38
A

2023-04-15 04:31:27
suguud
2023-03-17 12:32:48
#include<stdio.h>
int main()
{ int a,b,c;
scanf("%d %d %d",&a,&b,&c);
if (a>b && a>c) printf("%d",a);
else if (b>c) printf("%d",b);
else printf("%d",c);

}
2023-03-09 06:23:17
hi lalruudaa
2023-03-04 14:32:41
int a,b,c,m;
cin>>a>>b>>c;
m = a;
if(b>m) m = b;
if(c>m) m = c;
cout<<m<<endl;
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.