@cibertronic
256 / 143 / 13
Регистрация: 27.12.2009
Сообщений: 908
|
04.09.2010, 21:42
|
|
C++ | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #include <iostream.h>
#include <conio.h>
void main()
{
int a,b;
cin>>a>>b;
cout << (a < b ? "<" : (a == b ? "=" : ">")) << endl;
getch();
} |
|
0
|