﻿from random import random
def a_un_smartphone():
    a=random()
    if a<=0.75:
        return(True)
    else:
        return(False)
