Saturday, August 13, 2016

SOLUTION OF UVA 136


//  Question of uva 136 - Ugly Numbers
// Mahmud_Jamil





#include <stdio.h>
int main()
{
  printf("The 1500'th ugly number is 859963392.\n");
  return 0;
}