Skip to content

Instantly share code, notes, and snippets.

View wahidustoz's full-sized avatar
🏠
Working from home

Wahid Abduhakimov wahidustoz

🏠
Working from home
View GitHub Profile
@Abubakr0904
Abubakr0904 / problem_41.cs
Last active December 13, 2021 18:33
41-masala
using System;
public class Program
{
public static void Main(string[] args)
{
var son = int.Parse(Console.ReadLine());
for(int i = 2; i <= Math.Sqrt(son) + 1; i++)
{
if(son % i == 0)