P
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
int maxBid = Convert.ToInt32(Console.ReadLine());
for (;;)
{
int x = Convert.ToInt32(Console.ReadLine());
if (x > maxBid)
break;
}
Console.WriteLine("Sold: " x);
}
}
}
int x = 0,
while(x < maxBid)
{
x = int.Parse(Console.ReadLine());
}