using System;
public class Program
{
public static void Main()
int x = 1;
int f = 2;
int t = x + 3*f;
NPC p = new NPC();
for(int i=0; i<1000; i++){
p.getOlder();
if(p.alive){
break;
}
Console.WriteLine("HE DED");
class NPC{
public float age = 0;
public void getOlder(){
age+=1;
if(!alive){
Console.WriteLine("ARGGG");
public bool alive{
get{
return age<100;