﻿from random import *

def exp2():
    d = uniform(0, 1)
    if d < 0.3:
        return 1
    else:
        return 2
