Saturday, June 25, 2016

SOLUTION OF URI 1864


//    Solution of  1864 Our Days Are Never Coming...
//   (Mahmud_Jamil) BRUR




#include <stdio.h>
int main()
{
    int a,b,c,d;
    char ara[40]="LIFE IS NOT A PROBLEM TO BE SOLVED";
    scanf("%d", &a);
    for(b=0; b<a; b++)
        printf("%c", ara[b]);
    printf("\n");
    return 0;
}