/***
Symbolys for mathematical opreations in C#:
+ = add
- = subtract
* = multiply
/ = divide
% = remainder
uint maxNum = 4294967295
***/
using System;
public class Program
{
public static void Main()
float a = 12511353;
float b = 10361638;
float c = a-b;
//float d = $21497.15;
Console.WriteLine("Integer A Integer B is: " + c);
}