Thursday, January 9, 2014

UVa 136 - Ugly Numbers solution

Problem link :  UVa 136 - Ugly Numbers

Solution : 


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

1 comment: