using System;
using Microsoft.Practices.Unity;
public class Program
{
public float x, p, r, ts, tc;
public int t;
public void Main()
Awake();
Start();
Update();
}
void Awake()
x = 100f;
p = 0.425f;
r = 0f;
void Start()
r = (x * p);
void Update()
t += 1;
x = (r + x);
Console.WriteLine(x);