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
2020-10-21 10:19:40
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
if(a>b && a>c) cout<<a;
else if(b>a && b>c) cout<<b;
else if(c>a && c>b) cout<<c;
return 0;
}altaik
2020-10-13 14:05:16
666
2020-10-09 08:03:07
hi
2020-06-16 12:21:56
dahahhah
2020-06-08 04:15:45
#include <iostream>
using namespace std;

int main() {
int a,b,c;
cin >> a >> b >> c;
a>b ? (a>c ? cout << a : cout << c) : (a>c ? cout << b : (b>c ? cout << b : cout <<c));
return 0;
}
2019-12-02 17:48:42
#include <stdio.h>
int main () {
int a,b,c, max;
scanf("%d %d %d",&a, &b,&c);
max=a;
if(max<b)
max=b;
if(max<c)
max=c;
printf("%d", max);
}
2019-10-31 05:02:11
not so ez
2019-09-29 07:06:37
#include <cstdio>
int main()
{
int a,b,c,s;
scanf ("%d%d%d",&a,&b,&c);
if(a >= b && a >= c) s = a;
if(b >= a && b >= c) s = b;
if(c >= a && c >= b) s = c;
printf ("%d",s);
return 0;
}
2019-09-23 05:39:35

#include<stdio.h>
int main(){
int a,b,c,d,e,S;
scanf("%d",&a);
scanf("%d",&b);
scanf("%d",&c);
if(a>b)d=a;
else d=b;
if(d>c)e=d;
else e=c;
printf("%d",e);
return 0;
} tooooooooo EZYYY
2019-02-22 07:40:47
#include<stdio.h>
int main(){
int a,b,c,d,e,S;
scanf("%d",&a);
scanf("%d",&b);
scanf("%d",&c);
if(a>b)d=a;
else d=b;
if(d>c)e=d;
else e=c;
printf("%d",e);
return 0;
} EZ
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.