Skip to content

Instantly share code, notes, and snippets.

@mi6112ogit
Created February 4, 2017 15:29
Show Gist options
  • Save mi6112ogit/ed61d896bc2ebd189a4e803dc44bdce7 to your computer and use it in GitHub Desktop.
Save mi6112ogit/ed61d896bc2ebd189a4e803dc44bdce7 to your computer and use it in GitHub Desktop.
using System;
using System.IO;
namespace AOJ
{
class code
{
static void Main()
{
string[] str = Console.ReadLine().Split(' ');
int a = int.Parse(str[0]);
int b = int.Parse(str[1]);
if (a > b) Console.WriteLine("a > b");
else if (a < b) Console.WriteLine("a < b");
else Console.WriteLine("a == b");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment