Skip to content

Instantly share code, notes, and snippets.

@sakapon
Created December 14, 2019 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sakapon/00cbe06f702eb000234ac44c9c28480d to your computer and use it in GitHub Desktop.
Save sakapon/00cbe06f702eb000234ac44c9c28480d to your computer and use it in GitHub Desktop.
sumitrust2019 C - 100 to 105 (2)
using System;
class C
{
static void Main()
{
var x = int.Parse(Console.ReadLine());
Console.WriteLine(x <= x / 100 * 105 ? 1 : 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment